結果

問題 No.1570 Blocks
ユーザー tentententen
提出日時 2021-06-29 08:38:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,571 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 78,148 KB
実行使用メモリ 51,240 KB
最終ジャッジ日時 2024-06-25 17:26:21
合計ジャッジ時間 15,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,332 KB
testcase_01 AC 53 ms
36,920 KB
testcase_02 AC 262 ms
47,800 KB
testcase_03 AC 383 ms
50,692 KB
testcase_04 AC 257 ms
45,660 KB
testcase_05 AC 263 ms
46,876 KB
testcase_06 AC 326 ms
49,572 KB
testcase_07 AC 149 ms
41,768 KB
testcase_08 AC 365 ms
50,780 KB
testcase_09 AC 361 ms
47,380 KB
testcase_10 AC 277 ms
47,796 KB
testcase_11 AC 288 ms
49,292 KB
testcase_12 AC 400 ms
51,240 KB
testcase_13 AC 302 ms
49,896 KB
testcase_14 AC 305 ms
49,604 KB
testcase_15 AC 224 ms
45,076 KB
testcase_16 AC 304 ms
49,836 KB
testcase_17 AC 269 ms
44,960 KB
testcase_18 AC 277 ms
48,332 KB
testcase_19 AC 250 ms
46,476 KB
testcase_20 AC 222 ms
44,840 KB
testcase_21 AC 358 ms
50,124 KB
testcase_22 AC 55 ms
37,176 KB
testcase_23 AC 56 ms
37,224 KB
testcase_24 AC 57 ms
36,760 KB
testcase_25 AC 55 ms
37,268 KB
testcase_26 AC 57 ms
36,920 KB
testcase_27 AC 56 ms
37,084 KB
testcase_28 AC 57 ms
37,240 KB
testcase_29 AC 55 ms
36,888 KB
testcase_30 AC 54 ms
37,308 KB
testcase_31 AC 58 ms
37,120 KB
testcase_32 AC 283 ms
48,968 KB
testcase_33 AC 380 ms
47,664 KB
testcase_34 AC 296 ms
49,832 KB
testcase_35 AC 355 ms
47,740 KB
testcase_36 AC 296 ms
49,640 KB
testcase_37 AC 396 ms
50,700 KB
testcase_38 WA -
testcase_39 AC 307 ms
49,644 KB
testcase_40 AC 299 ms
49,692 KB
testcase_41 AC 352 ms
47,804 KB
testcase_42 AC 309 ms
49,584 KB
testcase_43 AC 308 ms
49,648 KB
testcase_44 AC 310 ms
49,860 KB
testcase_45 AC 311 ms
49,568 KB
testcase_46 AC 296 ms
48,812 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();
        PriorityQueue<Block> blocks = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            blocks.add(new Block(sc.nextInt(), sc.nextInt()));
        }
        long weight = 0;
        while (blocks.size() > 0) {
            Block b = blocks.poll();
            if (weight > b.limit) {
                System.out.println("No");
                return;
            }
            weight += b.weight;
        }
        System.out.println("Yes");
    }
    
    static class Block implements Comparable<Block> {
        int weight;
        int limit;
        
        public Block(int weight, int limit) {
            this.weight = weight;
            this.limit = limit;
        }
        
        public int compareTo(Block b) {
            return limit - b.limit;
        }
    }
}


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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0