結果

問題 No.1557 Binary Variable
ユーザー ks2mks2m
提出日時 2021-06-25 21:31:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 827 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 80,152 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-06-25 08:12:32
合計ジャッジ時間 28,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 456 ms
52,608 KB
testcase_01 AC 473 ms
52,312 KB
testcase_02 AC 62 ms
37,396 KB
testcase_03 AC 61 ms
37,248 KB
testcase_04 AC 557 ms
51,660 KB
testcase_05 AC 568 ms
52,192 KB
testcase_06 AC 540 ms
51,792 KB
testcase_07 AC 547 ms
51,740 KB
testcase_08 AC 623 ms
52,276 KB
testcase_09 AC 687 ms
52,180 KB
testcase_10 AC 717 ms
52,544 KB
testcase_11 AC 752 ms
53,020 KB
testcase_12 AC 668 ms
52,340 KB
testcase_13 AC 734 ms
52,424 KB
testcase_14 AC 777 ms
53,188 KB
testcase_15 AC 750 ms
53,084 KB
testcase_16 AC 748 ms
52,872 KB
testcase_17 AC 743 ms
52,864 KB
testcase_18 AC 787 ms
52,464 KB
testcase_19 AC 790 ms
53,020 KB
testcase_20 AC 767 ms
52,644 KB
testcase_21 AC 775 ms
52,740 KB
testcase_22 AC 781 ms
53,168 KB
testcase_23 AC 754 ms
52,476 KB
testcase_24 AC 767 ms
54,060 KB
testcase_25 AC 760 ms
52,504 KB
testcase_26 AC 821 ms
52,900 KB
testcase_27 AC 776 ms
52,076 KB
testcase_28 AC 760 ms
52,564 KB
testcase_29 AC 791 ms
52,684 KB
testcase_30 AC 827 ms
52,620 KB
testcase_31 AC 763 ms
52,676 KB
testcase_32 AC 804 ms
52,420 KB
testcase_33 AC 748 ms
52,660 KB
testcase_34 AC 63 ms
37,440 KB
testcase_35 AC 63 ms
37,588 KB
testcase_36 AC 62 ms
37,632 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));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		Obj[] arr = new Obj[m];
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			Obj o = new Obj();
			o.l = Integer.parseInt(sa[0]);
			o.r = Integer.parseInt(sa[1]);
			arr[i] = o;
		}
		br.close();

		Arrays.sort(arr, (o1, o2) -> o1.r - o2.r);
		int cnt = 0;
		int x = 0;
		for (int i = 0; i < m; i++) {
			Obj o = arr[i];
			if (x < o.l) {
				x = o.r;
				cnt++;
			}
		}
		System.out.println(n - cnt);
	}

	static class Obj {
		int l, r;
	}
}
0