結果

問題 No.63 ポッキーゲーム
ユーザー rara
提出日時 2022-09-07 19:06:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 59 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2024-05-02 11:35:23
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,496 KB
testcase_01 AC 40 ms
51,640 KB
testcase_02 AC 40 ms
51,964 KB
testcase_03 AC 39 ms
52,484 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,764 KB
testcase_06 AC 40 ms
51,952 KB
testcase_07 AC 39 ms
52,768 KB
testcase_08 AC 40 ms
53,008 KB
testcase_09 AC 44 ms
52,028 KB
testcase_10 AC 39 ms
52,412 KB
testcase_11 AC 39 ms
52,472 KB
testcase_12 AC 39 ms
52,232 KB
testcase_13 WA -
testcase_14 AC 40 ms
53,220 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
53,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,k = list(map(int,input().split(' ')))
print((l//(k*2))*k)
0