結果

問題 No.1557 Binary Variable
ユーザー tentententen
提出日時 2022-08-05 13:17:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 805 ms / 2,000 ms
コード長 1,750 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 53,552 KB
最終ジャッジ日時 2024-09-15 09:03:04
合計ジャッジ時間 28,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
51,908 KB
testcase_01 AC 371 ms
52,320 KB
testcase_02 AC 52 ms
36,908 KB
testcase_03 AC 51 ms
37,020 KB
testcase_04 AC 478 ms
52,720 KB
testcase_05 AC 489 ms
52,776 KB
testcase_06 AC 455 ms
52,812 KB
testcase_07 AC 472 ms
52,188 KB
testcase_08 AC 536 ms
52,628 KB
testcase_09 AC 545 ms
52,444 KB
testcase_10 AC 753 ms
53,552 KB
testcase_11 AC 736 ms
52,836 KB
testcase_12 AC 531 ms
52,764 KB
testcase_13 AC 719 ms
52,940 KB
testcase_14 AC 747 ms
53,552 KB
testcase_15 AC 739 ms
53,448 KB
testcase_16 AC 805 ms
53,544 KB
testcase_17 AC 784 ms
53,400 KB
testcase_18 AC 757 ms
53,416 KB
testcase_19 AC 782 ms
53,524 KB
testcase_20 AC 780 ms
53,072 KB
testcase_21 AC 765 ms
52,796 KB
testcase_22 AC 794 ms
53,052 KB
testcase_23 AC 737 ms
53,516 KB
testcase_24 AC 729 ms
53,468 KB
testcase_25 AC 754 ms
53,224 KB
testcase_26 AC 699 ms
53,428 KB
testcase_27 AC 764 ms
53,268 KB
testcase_28 AC 734 ms
53,172 KB
testcase_29 AC 739 ms
53,516 KB
testcase_30 AC 769 ms
53,024 KB
testcase_31 AC 746 ms
53,068 KB
testcase_32 AC 778 ms
52,884 KB
testcase_33 AC 772 ms
53,480 KB
testcase_34 AC 52 ms
36,560 KB
testcase_35 AC 52 ms
36,596 KB
testcase_36 AC 51 ms
36,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        Pair[] pairs = new Pair[m];
        for (int i = 0; i < m; i++) {
            pairs[i] = new Pair(sc.nextInt(), sc.nextInt());
        }
        Arrays.sort(pairs);
        int max = 0;
        for (Pair x : pairs) {
            if (x.left > max) {
                max = x.right;
                n--;
            }
        }
        System.out.println(n);
    }
    
    static class Pair implements Comparable<Pair> {
        int left;
        int right;
        
        public Pair(int left, int right) {
            this.left = left;
            this.right = right;
        }
        
        public int compareTo(Pair another) {
            if (right == another.right) {
                return left - another.left;
            } else {
                
                return right - another.right;
            }
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0