結果

問題 No.2259 Gas Station
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-05 18:00:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 53,780 KB
最終ジャッジ日時 2024-09-05 18:00:12
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,400 KB
testcase_01 AC 38 ms
52,136 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
51,692 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,692 KB
testcase_07 AC 38 ms
53,372 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 39 ms
52,644 KB
testcase_12 AC 38 ms
52,884 KB
testcase_13 AC 38 ms
52,092 KB
testcase_14 AC 38 ms
53,688 KB
testcase_15 AC 38 ms
53,744 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
52,692 KB
testcase_20 AC 38 ms
52,396 KB
testcase_21 AC 38 ms
52,056 KB
testcase_22 AC 39 ms
52,528 KB
testcase_23 AC 40 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,c=map(int,input().split())
print(min((c*x)%1000 for x in range(l,min(l+1000,r)+1)))
0