結果

問題 No.1286 Stone Skipping
ユーザー mlihua09mlihua09
提出日時 2020-11-13 22:13:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 61,912 KB
最終ジャッジ日時 2024-07-23 09:53:42
合計ジャッジ時間 2,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,824 KB
testcase_01 AC 40 ms
59,000 KB
testcase_02 AC 42 ms
59,812 KB
testcase_03 AC 36 ms
53,544 KB
testcase_04 AC 42 ms
59,732 KB
testcase_05 AC 44 ms
61,112 KB
testcase_06 AC 42 ms
60,760 KB
testcase_07 AC 37 ms
52,904 KB
testcase_08 AC 45 ms
60,384 KB
testcase_09 AC 43 ms
60,460 KB
testcase_10 AC 40 ms
58,252 KB
testcase_11 AC 40 ms
58,064 KB
testcase_12 AC 39 ms
58,412 KB
testcase_13 AC 39 ms
57,996 KB
testcase_14 AC 42 ms
59,548 KB
testcase_15 AC 42 ms
59,780 KB
testcase_16 AC 40 ms
58,304 KB
testcase_17 AC 43 ms
60,940 KB
testcase_18 AC 42 ms
58,024 KB
testcase_19 AC 40 ms
58,920 KB
testcase_20 AC 41 ms
58,548 KB
testcase_21 AC 41 ms
58,560 KB
testcase_22 AC 43 ms
60,320 KB
testcase_23 AC 45 ms
61,912 KB
testcase_24 AC 46 ms
60,988 KB
testcase_25 AC 41 ms
58,044 KB
testcase_26 AC 41 ms
59,168 KB
testcase_27 AC 41 ms
58,328 KB
testcase_28 AC 43 ms
60,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())

for i in range(60, 0, -1):
    
    x = 1
    
    y = D
    
    while x + 1 < y:
        
        z = (x + y) // 2
        
        Z = z
        
        a = 0
        
        for _ in range(i):
            
            a += z
            
            z //= 2
        
        
        if a >= D:
            
            y = Z
            
        else:
            
            x = Z
        

        
    a = 0
    z = x + 1
    for _ in range(i):
        
        a += z
        
        z //= 2
        
    if a == D:
        
        print(x + 1)
        
        exit()
        
print(1)
0