結果

問題 No.647 明太子
ユーザー ohagi_1182ohagi_1182
提出日時 2018-02-24 18:46:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 501 ms / 4,500 ms
コード長 867 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 48,120 KB
最終ジャッジ日時 2024-06-27 02:44:43
合計ジャッジ時間 8,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,172 KB
testcase_01 AC 118 ms
41,308 KB
testcase_02 AC 136 ms
41,544 KB
testcase_03 AC 135 ms
41,472 KB
testcase_04 AC 141 ms
41,556 KB
testcase_05 AC 141 ms
41,300 KB
testcase_06 AC 140 ms
41,580 KB
testcase_07 AC 151 ms
41,572 KB
testcase_08 AC 155 ms
41,932 KB
testcase_09 AC 200 ms
43,088 KB
testcase_10 AC 212 ms
43,596 KB
testcase_11 AC 192 ms
42,496 KB
testcase_12 AC 218 ms
43,472 KB
testcase_13 AC 230 ms
44,736 KB
testcase_14 AC 473 ms
48,120 KB
testcase_15 AC 249 ms
46,208 KB
testcase_16 AC 214 ms
43,008 KB
testcase_17 AC 492 ms
47,908 KB
testcase_18 AC 501 ms
48,052 KB
testcase_19 AC 364 ms
47,664 KB
testcase_20 AC 324 ms
47,780 KB
testcase_21 AC 257 ms
46,860 KB
testcase_22 AC 469 ms
47,660 KB
testcase_23 AC 192 ms
41,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i = 0 ; i < n ; i++) {
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
		}
		int m = sc.nextInt();
		int[] x = new int[m];
		int[] y = new int[m];
		for(int i = 0 ; i < m ; i++) {
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		int[] sum = new int[m];
		for(int i = 0 ; i < m ; i++) {
			int cnt = 0;
			for(int j = 0 ; j < n ; j++) {
				if(a[j] >= x[i] && b[j] <= y[i]) cnt++;
			}
			sum[i] = cnt;
		}
		int max = -1;
		for(int i = 0 ; i < m ; i++) {
			max = Math.max(max, sum[i]);
		}
		if(max == 0) {
			System.out.println(0);
			return;
		}
		for(int i = 0 ; i < m ; i++) {
			if(sum[i] == max) {
				System.out.println(i + 1);
			}
		}
	}

}
0