結果

問題 No.647 明太子
ユーザー tentententen
提出日時 2020-09-04 17:57:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 467 ms / 4,500 ms
コード長 1,227 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 79,408 KB
実行使用メモリ 52,688 KB
最終ジャッジ日時 2024-11-26 08:43:25
合計ジャッジ時間 8,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,032 KB
testcase_01 AC 113 ms
41,492 KB
testcase_02 AC 105 ms
40,316 KB
testcase_03 AC 114 ms
41,064 KB
testcase_04 AC 118 ms
40,884 KB
testcase_05 AC 113 ms
40,280 KB
testcase_06 AC 124 ms
41,484 KB
testcase_07 AC 133 ms
41,476 KB
testcase_08 AC 132 ms
41,588 KB
testcase_09 AC 190 ms
43,544 KB
testcase_10 AC 198 ms
43,408 KB
testcase_11 AC 170 ms
42,336 KB
testcase_12 AC 193 ms
43,276 KB
testcase_13 AC 193 ms
44,636 KB
testcase_14 AC 380 ms
48,048 KB
testcase_15 AC 223 ms
45,284 KB
testcase_16 AC 185 ms
43,072 KB
testcase_17 AC 402 ms
48,076 KB
testcase_18 AC 435 ms
50,380 KB
testcase_19 AC 291 ms
47,672 KB
testcase_20 AC 282 ms
47,644 KB
testcase_21 AC 225 ms
45,972 KB
testcase_22 AC 467 ms
52,688 KB
testcase_23 AC 162 ms
42,220 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