結果

問題 No.2259 Gas Station
ユーザー ks2mks2m
提出日時 2023-04-07 21:24:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 73,608 KB
実行使用メモリ 37,428 KB
最終ジャッジ日時 2024-10-02 18:56:38
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,744 KB
testcase_01 AC 50 ms
36,692 KB
testcase_02 AC 51 ms
37,000 KB
testcase_03 AC 50 ms
37,368 KB
testcase_04 AC 50 ms
36,948 KB
testcase_05 AC 50 ms
37,224 KB
testcase_06 AC 48 ms
37,260 KB
testcase_07 AC 49 ms
36,836 KB
testcase_08 AC 51 ms
36,988 KB
testcase_09 AC 50 ms
36,992 KB
testcase_10 AC 49 ms
37,188 KB
testcase_11 AC 48 ms
37,180 KB
testcase_12 AC 49 ms
36,940 KB
testcase_13 AC 48 ms
37,004 KB
testcase_14 AC 50 ms
37,000 KB
testcase_15 AC 50 ms
36,732 KB
testcase_16 AC 49 ms
36,940 KB
testcase_17 AC 50 ms
37,428 KB
testcase_18 AC 49 ms
36,968 KB
testcase_19 AC 50 ms
37,140 KB
testcase_20 AC 51 ms
36,880 KB
testcase_21 AC 49 ms
36,712 KB
testcase_22 AC 51 ms
37,008 KB
testcase_23 AC 49 ms
37,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int l = Integer.parseInt(sa[0]);
		int r = Integer.parseInt(sa[1]);
		int c = Integer.parseInt(sa[2]);
		br.close();

		boolean[] b = new boolean[1000];
		for (int i = l; i <= r; i++) {
			int a = (int) ((long) c * i % 1000);
			if (b[a]) {
				break;
			}
			b[a] = true;
		}

		if (b[0]) {
			System.out.println(0);
			return;
		}
		for (int i = 999; i > 0; i--) {
			if (b[i]) {
				System.out.println(1000 - i);
				return;
			}
		}
	}
}
0