結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー ponponpopponponpop
提出日時 2018-09-02 17:45:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 116 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,664 KB
最終ジャッジ日時 2024-10-01 21:05:43
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,204 KB
testcase_01 AC 39 ms
53,576 KB
testcase_02 AC 37 ms
53,248 KB
testcase_03 AC 39 ms
52,704 KB
testcase_04 AC 39 ms
52,680 KB
testcase_05 WA -
testcase_06 AC 40 ms
52,400 KB
testcase_07 AC 39 ms
53,080 KB
testcase_08 AC 40 ms
52,520 KB
testcase_09 AC 38 ms
53,480 KB
testcase_10 AC 38 ms
51,928 KB
testcase_11 AC 38 ms
53,104 KB
testcase_12 AC 38 ms
52,252 KB
testcase_13 AC 39 ms
52,472 KB
testcase_14 AC 38 ms
53,248 KB
testcase_15 AC 39 ms
52,084 KB
testcase_16 AC 38 ms
52,948 KB
testcase_17 AC 38 ms
53,080 KB
testcase_18 AC 40 ms
53,664 KB
testcase_19 AC 39 ms
52,792 KB
testcase_20 AC 38 ms
51,820 KB
testcase_21 AC 39 ms
52,400 KB
testcase_22 AC 38 ms
52,912 KB
testcase_23 AC 39 ms
52,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
total=1
for i in range(1,100000):
    total=total *2
    if total >=n:
        print(i)
        break
0