結果

問題 No.2259 Gas Station
ユーザー ころまるぼーい
提出日時 2023-05-10 17:28:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 148,272 KB
最終ジャッジ日時 2024-11-26 22:21:42
合計ジャッジ時間 22,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 6 WA * 7 RE * 1 TLE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

min, max, litter = map(int, input().split())
changes = []
for i in range(min, max + 1):
    change = int((str(i * litter)[-3]) + "00")
    changes.append(change)
else:
    changes.sort()

print(changes[0])
0