結果

問題 No.2259 Gas Station
ユーザー ころまるぼーいころまるぼーい
提出日時 2023-05-10 17:28:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 148,272 KB
最終ジャッジ日時 2024-11-26 22:21:42
合計ジャッジ時間 22,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
15,744 KB
testcase_01 AC 25 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 27 ms
16,000 KB
testcase_05 WA -
testcase_06 AC 27 ms
15,872 KB
testcase_07 AC 26 ms
135,936 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 27 ms
16,128 KB
testcase_11 AC 26 ms
131,328 KB
testcase_12 AC 25 ms
17,700 KB
testcase_13 RE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

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