結果

問題 No.63 ポッキーゲーム
ユーザー muuyuummuuyuum
提出日時 2016-07-10 16:03:25
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 818,432 KB
最終ジャッジ日時 2024-04-21 11:52:55
合計ジャッジ時間 10,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 WA -
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 10 ms
6,144 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 11 ms
6,144 KB
testcase_07 AC 29 ms
12,160 KB
testcase_08 AC 19 ms
8,576 KB
testcase_09 AC 127 ms
41,472 KB
testcase_10 AC 1,093 ms
327,552 KB
testcase_11 RE -
testcase_12 MLE -
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 272 ms
84,992 KB
testcase_17 RE -
testcase_18 AC 195 ms
61,312 KB
testcase_19 MLE -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

L,K = map(int, raw_input().split())
for i in range(0,L/K):
    L = L - 2 * K
    if L <= 0:
        print i * K
        break
0