結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-01 20:53:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 67 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-11-01 20:53:33
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,744 KB
testcase_01 AC 38 ms
52,192 KB
testcase_02 AC 37 ms
52,672 KB
testcase_03 AC 37 ms
52,944 KB
testcase_04 AC 38 ms
52,432 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,268 KB
testcase_07 AC 39 ms
52,456 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
52,024 KB
testcase_11 AC 38 ms
52,692 KB
testcase_12 AC 38 ms
52,188 KB
testcase_13 AC 37 ms
52,832 KB
testcase_14 AC 38 ms
52,896 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
52,412 KB
testcase_18 AC 37 ms
53,008 KB
testcase_19 AC 45 ms
51,920 KB
testcase_20 AC 38 ms
51,904 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=len(bin(n)[2:])-1
print(l+((n-(1<<l))//2>0)+(n&1))
0