結果

問題 No.63 ポッキーゲーム
ユーザー IHIH
提出日時 2021-01-08 19:39:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,056 ms / 5,000 ms
コード長 124 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 59,052 KB
最終ジャッジ日時 2024-04-27 20:48:22
合計ジャッジ時間 5,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,956 KB
testcase_01 AC 40 ms
52,740 KB
testcase_02 AC 39 ms
52,368 KB
testcase_03 AC 44 ms
53,148 KB
testcase_04 AC 39 ms
52,252 KB
testcase_05 AC 41 ms
52,204 KB
testcase_06 AC 40 ms
53,076 KB
testcase_07 AC 42 ms
59,052 KB
testcase_08 AC 42 ms
57,844 KB
testcase_09 AC 42 ms
58,608 KB
testcase_10 AC 52 ms
58,052 KB
testcase_11 AC 1,056 ms
58,260 KB
testcase_12 AC 63 ms
57,668 KB
testcase_13 AC 1,034 ms
58,072 KB
testcase_14 AC 63 ms
58,452 KB
testcase_15 AC 62 ms
57,584 KB
testcase_16 AC 43 ms
57,524 KB
testcase_17 AC 968 ms
57,684 KB
testcase_18 AC 44 ms
57,780 KB
testcase_19 AC 175 ms
58,008 KB
testcase_20 AC 60 ms
58,060 KB
testcase_21 AC 84 ms
58,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,k = map(int,input().split())

ans = 0
while True:
  if l <= k*2:
    break
  else:
    l -= (k*2)
    ans += k
print(ans)
0