結果

問題 No.2667 Constrained Permutation
ユーザー ks2mks2m
提出日時 2024-03-08 21:54:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 77,492 KB
実行使用メモリ 48,100 KB
最終ジャッジ日時 2024-09-29 19:34:09
合計ジャッジ時間 21,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,860 KB
testcase_01 AC 51 ms
37,000 KB
testcase_02 AC 59 ms
37,280 KB
testcase_03 AC 83 ms
38,280 KB
testcase_04 AC 79 ms
38,180 KB
testcase_05 AC 58 ms
36,988 KB
testcase_06 AC 79 ms
38,184 KB
testcase_07 AC 58 ms
36,940 KB
testcase_08 AC 84 ms
38,612 KB
testcase_09 AC 94 ms
38,792 KB
testcase_10 AC 81 ms
38,060 KB
testcase_11 AC 89 ms
38,020 KB
testcase_12 AC 312 ms
46,180 KB
testcase_13 AC 120 ms
40,168 KB
testcase_14 AC 543 ms
48,100 KB
testcase_15 AC 490 ms
47,428 KB
testcase_16 AC 415 ms
47,336 KB
testcase_17 AC 230 ms
45,544 KB
testcase_18 AC 570 ms
47,684 KB
testcase_19 AC 566 ms
48,036 KB
testcase_20 AC 570 ms
47,392 KB
testcase_21 AC 567 ms
47,472 KB
testcase_22 AC 557 ms
47,972 KB
testcase_23 AC 560 ms
47,740 KB
testcase_24 AC 346 ms
46,880 KB
testcase_25 AC 509 ms
47,092 KB
testcase_26 AC 564 ms
47,256 KB
testcase_27 AC 607 ms
47,888 KB
testcase_28 AC 504 ms
47,168 KB
testcase_29 AC 459 ms
47,292 KB
testcase_30 AC 508 ms
47,240 KB
testcase_31 AC 378 ms
47,040 KB
testcase_32 AC 190 ms
43,872 KB
testcase_33 WA -
testcase_34 AC 409 ms
46,992 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 485 ms
47,260 KB
testcase_39 AC 121 ms
40,272 KB
testcase_40 AC 412 ms
46,836 KB
testcase_41 AC 518 ms
47,012 KB
testcase_42 AC 406 ms
46,304 KB
testcase_43 AC 468 ms
47,188 KB
testcase_44 AC 294 ms
46,552 KB
testcase_45 AC 127 ms
40,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

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

		Arrays.sort(l);
		Arrays.sort(r);
		int maxL = 0;
		int minR = 1000000007;
		for (int i = 0; i < n; i++) {
			int i1 = i + 1;
			maxL = Math.max(maxL, l[i] - i1);
			minR = Math.min(minR, r[i] - i1);
		}
		int ans = Math.max(minR - maxL + 1, 0);
		System.out.println(ans);
	}
}
0