結果
問題 | No.642 Two Operations No.1 |
ユーザー | kjnho |
提出日時 | 2018-02-02 22:29:25 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 340 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,604 KB |
実行使用メモリ | 54,288 KB |
最終ジャッジ日時 | 2024-06-10 01:23:20 |
合計ジャッジ時間 | 1,209 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 32 ms
52,376 KB |
testcase_02 | AC | 33 ms
53,712 KB |
testcase_03 | AC | 32 ms
52,392 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
52,068 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 32 ms
53,060 KB |
ソースコード
# input def solve(): N = int(input()) count = 0 while True: if N == 1: break else: if N % 2 == 0: N = N//2 count += 1 else: N = N-1 count += 1 print(count) if __name__ == "__main__": solve()