結果

問題 No.647 明太子
ユーザー GrenacheGrenache
提出日時 2018-02-09 22:29:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 475 ms / 4,500 ms
コード長 1,148 bytes
コンパイル時間 3,330 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 59,236 KB
最終ジャッジ日時 2024-06-27 02:29:19
合計ジャッジ時間 9,910 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,528 KB
testcase_01 AC 131 ms
54,400 KB
testcase_02 AC 137 ms
54,024 KB
testcase_03 AC 131 ms
54,128 KB
testcase_04 AC 137 ms
54,192 KB
testcase_05 AC 135 ms
54,296 KB
testcase_06 AC 143 ms
54,020 KB
testcase_07 AC 151 ms
54,396 KB
testcase_08 AC 142 ms
54,348 KB
testcase_09 AC 202 ms
56,424 KB
testcase_10 AC 209 ms
56,928 KB
testcase_11 AC 191 ms
54,644 KB
testcase_12 AC 208 ms
57,044 KB
testcase_13 AC 219 ms
57,116 KB
testcase_14 AC 460 ms
59,184 KB
testcase_15 AC 234 ms
57,476 KB
testcase_16 AC 205 ms
56,880 KB
testcase_17 AC 468 ms
59,236 KB
testcase_18 AC 475 ms
59,188 KB
testcase_19 AC 354 ms
58,988 KB
testcase_20 AC 326 ms
59,028 KB
testcase_21 AC 270 ms
58,516 KB
testcase_22 AC 451 ms
59,196 KB
testcase_23 AC 183 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder647 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		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[] cnt = new int[m];
		int max = 0;
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < m; j++) {
				if (x[j] <= a[i] && y[j] >= b[i]) {
					cnt[j]++;
					max = Math.max(max, cnt[j]);
				}
			}
		}

		if (max == 0) {
			pr.println(0);
		} else {
			for (int i = 0; i < m; i++) {
				if (cnt[i] == max) {
					pr.println(i + 1);
				}
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0