結果

問題 No.63 ポッキーゲーム
ユーザー tyntyntyntyn
提出日時 2019-09-19 16:41:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 733 ms / 5,000 ms
コード長 83 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 58,936 KB
最終ジャッジ日時 2024-07-19 08:04:21
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,884 KB
testcase_01 AC 32 ms
52,904 KB
testcase_02 AC 32 ms
51,912 KB
testcase_03 AC 34 ms
52,376 KB
testcase_04 AC 33 ms
52,056 KB
testcase_05 AC 34 ms
52,432 KB
testcase_06 AC 33 ms
52,488 KB
testcase_07 AC 37 ms
58,364 KB
testcase_08 AC 35 ms
58,248 KB
testcase_09 AC 37 ms
57,192 KB
testcase_10 AC 42 ms
57,876 KB
testcase_11 AC 721 ms
58,128 KB
testcase_12 AC 49 ms
57,876 KB
testcase_13 AC 733 ms
56,992 KB
testcase_14 AC 51 ms
57,748 KB
testcase_15 AC 48 ms
57,460 KB
testcase_16 AC 37 ms
58,052 KB
testcase_17 AC 679 ms
57,624 KB
testcase_18 AC 38 ms
58,212 KB
testcase_19 AC 125 ms
57,968 KB
testcase_20 AC 46 ms
57,692 KB
testcase_21 AC 64 ms
58,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, k = map(int, input().split())
m = 0
while m + 2*k < l:
    m += 2*k
print(m//2)
0