結果

問題 No.647 明太子
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-13 19:50:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 472 ms / 4,500 ms
コード長 1,029 bytes
コンパイル時間 3,890 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 59,296 KB
最終ジャッジ日時 2024-06-27 02:42:40
合計ジャッジ時間 10,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,860 KB
testcase_01 AC 144 ms
53,912 KB
testcase_02 AC 132 ms
54,132 KB
testcase_03 AC 136 ms
53,740 KB
testcase_04 AC 145 ms
54,204 KB
testcase_05 AC 132 ms
53,672 KB
testcase_06 AC 140 ms
54,020 KB
testcase_07 AC 147 ms
53,988 KB
testcase_08 AC 155 ms
54,228 KB
testcase_09 AC 212 ms
56,936 KB
testcase_10 AC 215 ms
57,100 KB
testcase_11 AC 198 ms
54,732 KB
testcase_12 AC 213 ms
56,856 KB
testcase_13 AC 226 ms
57,000 KB
testcase_14 AC 438 ms
58,900 KB
testcase_15 AC 245 ms
57,456 KB
testcase_16 AC 215 ms
56,512 KB
testcase_17 AC 467 ms
58,972 KB
testcase_18 AC 458 ms
59,148 KB
testcase_19 AC 358 ms
59,296 KB
testcase_20 AC 334 ms
58,804 KB
testcase_21 AC 253 ms
57,864 KB
testcase_22 AC 472 ms
59,192 KB
testcase_23 AC 192 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No647 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(); //人数 N人
		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];
		int mentaiko[] = new int[M];
		for(int i = 0;i < M;i++) {
			X[i] = sc.nextInt();
			Y[i] = sc.nextInt();
			mentaiko[i] = 0;
		}
		int max = 0;

		// ここまで初期化 入力
		
		for(int i = 0;i < N;i++) {
			for(int j = 0;j < M;j++) {
				if(A[i] >= X[j] && B[i] <= Y[j]) {
					mentaiko[j]++;
				}
			}
		}
		
		for(int i = 0;i < M;i++) {
			if(max < mentaiko[i]) {
				max = mentaiko[i];
			}
		}
		
		if(max == 0) {
			System.out.println(0);
		}else {
			for(int i = 0;i < M;i++) {
				if(max == mentaiko[i]) {
					System.out.println(i + 1);
				}
			}
		}
	}
}
0