結果

問題 No.647 明太子
ユーザー htensaihtensai
提出日時 2019-12-26 11:35:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 523 ms / 4,500 ms
コード長 1,709 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 64,268 KB
最終ジャッジ日時 2024-10-03 06:00:22
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,044 KB
testcase_01 AC 104 ms
52,936 KB
testcase_02 AC 104 ms
53,144 KB
testcase_03 AC 109 ms
53,556 KB
testcase_04 AC 121 ms
54,176 KB
testcase_05 AC 107 ms
52,856 KB
testcase_06 AC 104 ms
52,640 KB
testcase_07 AC 122 ms
53,572 KB
testcase_08 AC 142 ms
54,400 KB
testcase_09 AC 196 ms
56,524 KB
testcase_10 AC 193 ms
57,012 KB
testcase_11 AC 172 ms
54,436 KB
testcase_12 AC 187 ms
56,916 KB
testcase_13 AC 206 ms
57,196 KB
testcase_14 AC 419 ms
59,444 KB
testcase_15 AC 218 ms
57,936 KB
testcase_16 AC 201 ms
57,000 KB
testcase_17 AC 471 ms
59,336 KB
testcase_18 AC 468 ms
62,704 KB
testcase_19 AC 336 ms
59,072 KB
testcase_20 AC 303 ms
58,824 KB
testcase_21 AC 221 ms
58,368 KB
testcase_22 AC 523 ms
64,268 KB
testcase_23 AC 164 ms
54,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] prices = new int[n];
        int[] hots = new int[n];
        for (int i = 0; i < n; i++) {
            prices[i] = sc.nextInt();
            hots[i] = sc.nextInt();
        }
        int m = sc.nextInt();
        Mentai[] mentais = new Mentai[m];
        for (int i = 0; i < m; i++) {
            mentais[i] = new Mentai(i + 1, sc.nextInt(), sc.nextInt());
            for (int j = 0; j < n; j++) {
                mentais[i].buy(prices[j], hots[j]);
            }
        }
        Arrays.sort(mentais);
        int count = mentais[0].count;
        if (count == 0) {
            System.out.println(0);
            return;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < m && mentais[i].count == count; i++) {
            sb.append(mentais[i].idx).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Mentai implements Comparable<Mentai> {
        int idx;
        int price;
        int hot;
        int count;
        public Mentai (int idx, int price, int hot) {
            this.idx = idx;
            this.price = price;
            this.hot = hot;
            count = 0;
        }
        
        public int compareTo(Mentai another) {
            if (count == another.count) {
                return idx - another.idx;
            } else {
                return another.count - count;
            }
        }
        
        public void buy(int p, int h) {
            if (p >= price && h <= hot) {
                count++;
            }
        }
    }
}
0