結果

問題 No.1557 Binary Variable
ユーザー tentententen
提出日時 2024-07-29 13:01:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 1,859 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 79,524 KB
実行使用メモリ 67,624 KB
最終ジャッジ日時 2024-07-29 13:02:03
合計ジャッジ時間 23,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
65,156 KB
testcase_01 AC 472 ms
65,332 KB
testcase_02 AC 56 ms
50,388 KB
testcase_03 AC 55 ms
50,380 KB
testcase_04 AC 508 ms
65,316 KB
testcase_05 AC 515 ms
65,332 KB
testcase_06 AC 522 ms
65,540 KB
testcase_07 AC 503 ms
65,540 KB
testcase_08 AC 530 ms
65,164 KB
testcase_09 AC 510 ms
65,476 KB
testcase_10 AC 546 ms
65,256 KB
testcase_11 AC 531 ms
64,988 KB
testcase_12 AC 513 ms
65,240 KB
testcase_13 AC 522 ms
64,964 KB
testcase_14 AC 537 ms
65,960 KB
testcase_15 AC 546 ms
65,572 KB
testcase_16 AC 531 ms
65,636 KB
testcase_17 AC 544 ms
66,860 KB
testcase_18 AC 559 ms
65,316 KB
testcase_19 AC 516 ms
67,624 KB
testcase_20 AC 541 ms
65,740 KB
testcase_21 AC 538 ms
65,508 KB
testcase_22 AC 558 ms
65,760 KB
testcase_23 AC 521 ms
65,428 KB
testcase_24 AC 547 ms
65,612 KB
testcase_25 AC 542 ms
65,540 KB
testcase_26 AC 533 ms
65,000 KB
testcase_27 AC 542 ms
65,568 KB
testcase_28 AC 531 ms
65,212 KB
testcase_29 AC 543 ms
65,404 KB
testcase_30 AC 536 ms
65,528 KB
testcase_31 AC 542 ms
65,408 KB
testcase_32 AC 538 ms
65,824 KB
testcase_33 AC 524 ms
65,284 KB
testcase_34 AC 56 ms
50,376 KB
testcase_35 AC 55 ms
50,428 KB
testcase_36 AC 55 ms
50,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        PriorityQueue<Num> queue = new PriorityQueue<>();
        while (m-- > 0) {
            queue.add(new Num(sc.nextInt(), sc.nextInt()));
        }
        int current = 0;
        while (queue.size() > 0) {
            Num x = queue.poll();
            if (x.left > current) {
                current = x.right;
                n--;
            }
        }
        System.out.println(n);
    }
    
    static class  Num implements Comparable<Num> {
        int left;
        int right;
        
        public Num(int left, int right) {
            this.left = left;
            this.right = right;
        }
        
        public int compareTo(Num another) {
            return right - another.right;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0