結果

問題 No.63 ポッキーゲーム
ユーザー mahiromahiro
提出日時 2020-01-11 18:09:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 53,888 KB
最終ジャッジ日時 2024-05-04 00:33:02
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,936 KB
testcase_01 AC 46 ms
52,752 KB
testcase_02 AC 46 ms
52,216 KB
testcase_03 AC 44 ms
51,888 KB
testcase_04 AC 43 ms
52,564 KB
testcase_05 AC 41 ms
53,084 KB
testcase_06 AC 38 ms
52,560 KB
testcase_07 AC 40 ms
53,012 KB
testcase_08 AC 39 ms
53,136 KB
testcase_09 AC 38 ms
52,768 KB
testcase_10 AC 39 ms
51,796 KB
testcase_11 AC 40 ms
51,948 KB
testcase_12 AC 38 ms
51,816 KB
testcase_13 WA -
testcase_14 AC 39 ms
52,136 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
52,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, K = (int(i) for i in input().split())
epsilon = 1e-10
ans = int(((L - epsilon) // (K*2)) * K)
print(ans)
0