結果
問題 | No.47 ポケットを叩くとビスケットが2倍 |
ユーザー | sdads |
提出日時 | 2018-11-20 14:28:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 348 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-06 21:10:34 |
合計ジャッジ時間 | 1,541 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | WA | - |
testcase_05 | AC | 27 ms
10,624 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
10,880 KB |
testcase_12 | AC | 27 ms
10,624 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 26 ms
10,624 KB |
testcase_16 | AC | 27 ms
10,752 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 28 ms
10,752 KB |
testcase_23 | WA | - |
ソースコード
def keisan(N, n ,i): p = N // n q = N % n if p == 1 and q == 0: return i elif N == p or p >= n: n *= 2 i += 1 elif p < n: n /= 2 if p > q: N = p else: N = q i += 1 i = keisan(N, n, i) return i N = int(input()) n = 1 print(keisan(N, n, 0))