結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
51,624 KB
testcase_02 AC 34 ms
51,744 KB
testcase_03 AC 34 ms
52,996 KB
testcase_04 AC 35 ms
52,968 KB
testcase_05 WA -
testcase_06 AC 35 ms
53,344 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
51,696 KB
testcase_11 AC 35 ms
52,488 KB
testcase_12 AC 35 ms
53,284 KB
testcase_13 AC 34 ms
52,460 KB
testcase_14 AC 36 ms
52,544 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 35 ms
51,940 KB
testcase_18 AC 35 ms
52,132 KB
testcase_19 AC 35 ms
52,676 KB
testcase_20 AC 34 ms
52,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)>0)+(n&1))
0