結果

問題 No.2259 Gas Station
ユーザー kanenistkanenist
提出日時 2023-04-11 11:59:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-10-07 04:14:03
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,968 KB
testcase_01 AC 113 ms
53,644 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 119 ms
53,528 KB
testcase_05 WA -
testcase_06 AC 118 ms
53,764 KB
testcase_07 AC 118 ms
53,700 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 116 ms
53,716 KB
testcase_11 AC 118 ms
53,912 KB
testcase_12 AC 125 ms
53,684 KB
testcase_13 AC 107 ms
52,840 KB
testcase_14 AC 119 ms
53,800 KB
testcase_15 AC 122 ms
53,672 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 117 ms
53,972 KB
testcase_20 AC 116 ms
53,708 KB
testcase_21 AC 108 ms
52,608 KB
testcase_22 AC 108 ms
52,520 KB
testcase_23 AC 124 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
    	int l = sc.nextInt();
    	int r = sc.nextInt();
    	int c = sc.nextInt();
    	if(1000 < r - l)r = l + 1000;
    	long min = Long.MAX_VALUE;
    	for(long i = l; i <= r; i++){
    		long k = i * c % 1000;
    		min = Math.min(k,min);
    	}
    	System.out.println(min);
    }
}
0