結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,016 KB
testcase_01 WA -
testcase_02 AC 9 ms
6,016 KB
testcase_03 AC 10 ms
6,144 KB
testcase_04 AC 9 ms
6,016 KB
testcase_05 AC 10 ms
6,144 KB
testcase_06 AC 10 ms
6,272 KB
testcase_07 AC 27 ms
12,160 KB
testcase_08 AC 17 ms
8,448 KB
testcase_09 AC 123 ms
41,344 KB
testcase_10 AC 1,037 ms
327,552 KB
testcase_11 RE -
testcase_12 MLE -
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 251 ms
84,736 KB
testcase_17 RE -
testcase_18 AC 180 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