結果

問題 No.1286 Stone Skipping
ユーザー mlihua09mlihua09
提出日時 2020-11-13 22:12:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 61,556 KB
最終ジャッジ日時 2024-07-22 20:59:36
合計ジャッジ時間 2,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,456 KB
testcase_01 AC 43 ms
58,712 KB
testcase_02 AC 44 ms
60,684 KB
testcase_03 AC 39 ms
52,548 KB
testcase_04 AC 43 ms
60,056 KB
testcase_05 AC 42 ms
60,280 KB
testcase_06 AC 43 ms
60,440 KB
testcase_07 AC 37 ms
52,248 KB
testcase_08 AC 46 ms
60,388 KB
testcase_09 AC 45 ms
61,016 KB
testcase_10 AC 40 ms
57,844 KB
testcase_11 AC 40 ms
58,204 KB
testcase_12 AC 40 ms
58,112 KB
testcase_13 AC 40 ms
59,312 KB
testcase_14 AC 42 ms
58,864 KB
testcase_15 AC 44 ms
60,428 KB
testcase_16 AC 42 ms
58,376 KB
testcase_17 AC 42 ms
60,124 KB
testcase_18 WA -
testcase_19 AC 41 ms
58,928 KB
testcase_20 AC 41 ms
59,744 KB
testcase_21 AC 40 ms
58,060 KB
testcase_22 AC 45 ms
60,792 KB
testcase_23 AC 44 ms
61,516 KB
testcase_24 AC 45 ms
61,556 KB
testcase_25 AC 41 ms
59,320 KB
testcase_26 AC 42 ms
58,084 KB
testcase_27 AC 41 ms
59,532 KB
testcase_28 AC 42 ms
60,424 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()
0