結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
52,708 KB
testcase_01 AC 105 ms
52,808 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 120 ms
53,988 KB
testcase_05 WA -
testcase_06 AC 119 ms
53,508 KB
testcase_07 AC 120 ms
53,872 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 108 ms
52,584 KB
testcase_11 AC 106 ms
54,756 KB
testcase_12 AC 120 ms
53,964 KB
testcase_13 AC 121 ms
54,124 KB
testcase_14 AC 118 ms
53,904 KB
testcase_15 AC 105 ms
52,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 122 ms
53,920 KB
testcase_20 AC 127 ms
53,672 KB
testcase_21 AC 111 ms
52,816 KB
testcase_22 AC 117 ms
53,700 KB
testcase_23 AC 118 ms
53,852 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(l + 2001 < r) r = l + 1002;
    	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