結果

問題 No.63 ポッキーゲーム
ユーザー motor_radialmotor_radial
提出日時 2019-07-27 17:43:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,408 ms / 5,000 ms
コード長 92 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 75,640 KB
最終ジャッジ日時 2023-09-15 06:22:40
合計ジャッジ時間 7,332 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,456 KB
testcase_01 AC 78 ms
71,112 KB
testcase_02 AC 76 ms
71,240 KB
testcase_03 AC 79 ms
71,460 KB
testcase_04 AC 79 ms
71,400 KB
testcase_05 AC 78 ms
71,392 KB
testcase_06 AC 76 ms
71,244 KB
testcase_07 AC 80 ms
75,352 KB
testcase_08 AC 80 ms
75,460 KB
testcase_09 AC 81 ms
75,556 KB
testcase_10 AC 94 ms
75,564 KB
testcase_11 AC 1,399 ms
75,592 KB
testcase_12 AC 106 ms
75,640 KB
testcase_13 AC 1,408 ms
75,632 KB
testcase_14 AC 108 ms
75,552 KB
testcase_15 AC 109 ms
75,544 KB
testcase_16 AC 84 ms
75,616 KB
testcase_17 AC 1,320 ms
75,464 KB
testcase_18 AC 83 ms
75,492 KB
testcase_19 AC 258 ms
75,552 KB
testcase_20 AC 101 ms
75,544 KB
testcase_21 AC 135 ms
75,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,K=map(int,input().split())
count=0
while(L>(2*K)):
    count+=1
    L=L-2*K
print(count*K)
0