CF676B.Pyramid of Glasses

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Mary has just graduated from one well-known University and is now attending celebration party. Students like to dream of a beautiful life, so they used champagne glasses to construct a small pyramid. The height of the pyramid is nn . The top level consists of only 11 glass, that stands on 22 glasses on the second level (counting from the top), then 33 glasses on the third level and so on.The bottom level consists of nn glasses.

Vlad has seen in the movies many times how the champagne beautifully flows from top levels to bottom ones, filling all the glasses simultaneously. So he took a bottle and started to pour it in the glass located at the top of the pyramid.

Each second, Vlad pours to the top glass the amount of champagne equal to the size of exactly one glass. If the glass is already full, but there is some champagne flowing in it, then it pours over the edge of the glass and is equally distributed over two glasses standing under. If the overflowed glass is at the bottom level, then the champagne pours on the table. For the purpose of this problem we consider that champagne is distributed among pyramid glasses immediately. Vlad is interested in the number of completely full glasses if he stops pouring champagne in tt seconds.

Pictures below illustrate the pyramid consisting of three levels.

输入格式

The only line of the input contains two integers nn and tt ( 1<=n<=10,0<=t<=100001<=n<=10,0<=t<=10000 ) — the height of the pyramid and the number of seconds Vlad will be pouring champagne from the bottle.

输出格式

Print the single integer — the number of completely full glasses after tt seconds.

输入输出样例

  • 输入#1

    3 5
    

    输出#1

    4
    
  • 输入#2

    4 8
    

    输出#2

    6
    

说明/提示

In the first sample, the glasses full after 55 seconds are: the top glass, both glasses on the second level and the middle glass at the bottom level. Left and right glasses of the bottom level will be half-empty.

首页