結果

問題 No.63 ポッキーゲーム
ユーザー tnoda_tnoda_
提出日時 2015-07-28 15:52:31
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 6,580 KB
実行使用メモリ 8,760 KB
最終ジャッジ日時 2023-09-23 04:43:51
合計ジャッジ時間 8,199 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,032 KB
testcase_01 AC 12 ms
5,852 KB
testcase_02 AC 11 ms
5,852 KB
testcase_03 WA -
testcase_04 AC 12 ms
5,988 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