結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー HIROPON87069639HIROPON87069639
提出日時 2016-02-13 22:36:53
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 196 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 7,148 KB
実行使用メモリ 6,780 KB
最終ジャッジ日時 2023-10-22 05:02:28
合計ジャッジ時間 1,336 ms
ジャッジサーバーID
(参考情報)
judge9 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,752 KB
testcase_01 AC 12 ms
6,752 KB
testcase_02 AC 12 ms
6,752 KB
testcase_03 AC 12 ms
6,752 KB
testcase_04 AC 12 ms
6,752 KB
testcase_05 AC 11 ms
6,752 KB
testcase_06 AC 12 ms
6,752 KB
testcase_07 AC 13 ms
6,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 11 ms
6,752 KB
testcase_11 AC 11 ms
6,752 KB
testcase_12 AC 12 ms
6,752 KB
testcase_13 AC 12 ms
6,752 KB
testcase_14 AC 12 ms
6,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 12 ms
6,752 KB
testcase_18 AC 12 ms
6,752 KB
testcase_19 AC 12 ms
6,752 KB
testcase_20 AC 11 ms
6,752 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2016.2.13
import math
N = input()
tap = math.floor(math.log(N, 2))
zan = N - 2 ** tap
if zan == 0:
    print int(tap)
elif zan == 1:
    print int(tap + 1)
else:
    print int(tap + 1 + zan % 2)
0