結果

問題 No.63 ポッキーゲーム
ユーザー IHIH
提出日時 2021-01-08 19:39:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,027 ms / 5,000 ms
コード長 124 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 58,432 KB
最終ジャッジ日時 2024-11-16 02:14:13
合計ジャッジ時間 5,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,452 KB
testcase_01 AC 38 ms
51,740 KB
testcase_02 AC 38 ms
52,796 KB
testcase_03 AC 37 ms
51,648 KB
testcase_04 AC 38 ms
51,704 KB
testcase_05 AC 38 ms
51,696 KB
testcase_06 AC 38 ms
52,100 KB
testcase_07 AC 42 ms
58,160 KB
testcase_08 AC 42 ms
58,432 KB
testcase_09 AC 43 ms
57,904 KB
testcase_10 AC 52 ms
58,024 KB
testcase_11 AC 1,026 ms
57,928 KB
testcase_12 AC 61 ms
58,128 KB
testcase_13 AC 1,027 ms
57,640 KB
testcase_14 AC 61 ms
57,920 KB
testcase_15 AC 62 ms
58,248 KB
testcase_16 AC 44 ms
57,600 KB
testcase_17 AC 964 ms
57,816 KB
testcase_18 AC 43 ms
57,728 KB
testcase_19 AC 174 ms
57,652 KB
testcase_20 AC 58 ms
58,088 KB
testcase_21 AC 84 ms
58,428 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