結果

問題 No.647 明太子
ユーザー tentententen
提出日時 2020-09-04 17:57:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 443 ms / 4,500 ms
コード長 1,227 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 78,748 KB
実行使用メモリ 53,164 KB
最終ジャッジ日時 2024-05-04 18:56:01
合計ジャッジ時間 8,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,016 KB
testcase_01 AC 101 ms
40,008 KB
testcase_02 AC 121 ms
41,592 KB
testcase_03 AC 115 ms
41,432 KB
testcase_04 AC 123 ms
41,440 KB
testcase_05 AC 123 ms
41,396 KB
testcase_06 AC 117 ms
41,176 KB
testcase_07 AC 124 ms
41,412 KB
testcase_08 AC 125 ms
41,648 KB
testcase_09 AC 177 ms
43,452 KB
testcase_10 AC 176 ms
43,568 KB
testcase_11 AC 158 ms
42,340 KB
testcase_12 AC 182 ms
43,340 KB
testcase_13 AC 177 ms
44,632 KB
testcase_14 AC 383 ms
49,564 KB
testcase_15 AC 213 ms
45,808 KB
testcase_16 AC 181 ms
43,268 KB
testcase_17 AC 430 ms
48,084 KB
testcase_18 AC 429 ms
47,932 KB
testcase_19 AC 305 ms
47,804 KB
testcase_20 AC 285 ms
47,640 KB
testcase_21 AC 217 ms
46,596 KB
testcase_22 AC 443 ms
53,164 KB
testcase_23 AC 163 ms
42,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final long MAX = (long)Math.sqrt(Long.MAX_VALUE);
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] costs = new int[n];
    	int[] hots = new int[n];
    	for (int i = 0; i < n; i++) {
    	    costs[i] = sc.nextInt();
    	    hots[i] = sc.nextInt();
    	}
    	int m = sc.nextInt();
    	int[] counts = new int[m];
    	for (int i = 0; i < m; i++) {
    	    int c = sc.nextInt();
    	    int h = sc.nextInt();
    	    for (int j = 0; j < n; j++) {
    	        if (c <= costs[j] && h >= hots[j]) {
    	            counts[i]++;
    	        }
    	    }
    	}
    	int max = 0;
    	ArrayList<Integer> list = new ArrayList<>();
    	for (int i = 0; i < m; i++) {
    	    if (counts[i] > max) {
    	        list.clear();
    	        list.add(i + 1);
    	        max = counts[i];
    	    } else if (counts[i] == max) {
    	        list.add(i + 1);
    	    }
    	}
    	if (max == 0) {
    	    System.out.println(0);
    	    return;
    	}
    	StringBuilder sb = new StringBuilder();
    	for (int x : list) {
    	    sb.append(x).append("\n");
    	}
	    System.out.print(sb);
    }
}
0