結果

問題 No.63 ポッキーゲーム
ユーザー mahiromahiro
提出日時 2020-01-11 18:09:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-11-25 06:13:35
合計ジャッジ時間 1,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,864 KB
testcase_01 AC 39 ms
54,092 KB
testcase_02 AC 36 ms
52,952 KB
testcase_03 AC 36 ms
51,936 KB
testcase_04 AC 33 ms
53,488 KB
testcase_05 AC 34 ms
52,524 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 33 ms
52,128 KB
testcase_08 AC 33 ms
53,216 KB
testcase_09 AC 33 ms
53,100 KB
testcase_10 AC 35 ms
52,020 KB
testcase_11 AC 34 ms
52,960 KB
testcase_12 AC 35 ms
52,628 KB
testcase_13 WA -
testcase_14 AC 36 ms
52,596 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 34 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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