結果

問題 No.63 ポッキーゲーム
ユーザー tnoda_tnoda_
提出日時 2015-07-28 15:52:31
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 13,216 KB
最終ジャッジ日時 2024-07-16 04:47:42
合計ジャッジ時間 7,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

L, K = map(int, raw_input().strip().split(" "))
ans = 0
while L > 2 * K:
    ans += 1
    L -= 2 * K
print(ans)
0