結果

問題 No.647 明太子
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 22:42:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 524 ms / 4,500 ms
コード長 853 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 48,172 KB
最終ジャッジ日時 2024-06-27 02:42:50
合計ジャッジ時間 9,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,560 KB
testcase_01 AC 134 ms
41,432 KB
testcase_02 AC 137 ms
41,240 KB
testcase_03 AC 134 ms
41,028 KB
testcase_04 AC 135 ms
41,184 KB
testcase_05 AC 139 ms
41,656 KB
testcase_06 AC 138 ms
41,428 KB
testcase_07 AC 148 ms
41,516 KB
testcase_08 AC 145 ms
41,644 KB
testcase_09 AC 200 ms
43,548 KB
testcase_10 AC 208 ms
43,236 KB
testcase_11 AC 199 ms
42,924 KB
testcase_12 AC 213 ms
43,908 KB
testcase_13 AC 230 ms
44,720 KB
testcase_14 AC 466 ms
48,172 KB
testcase_15 AC 247 ms
45,916 KB
testcase_16 AC 224 ms
42,980 KB
testcase_17 AC 490 ms
48,104 KB
testcase_18 AC 524 ms
47,984 KB
testcase_19 AC 378 ms
47,856 KB
testcase_20 AC 363 ms
48,036 KB
testcase_21 AC 264 ms
46,028 KB
testcase_22 AC 461 ms
47,912 KB
testcase_23 AC 196 ms
42,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] wallet = new int[n];
		int[] favorite = new int[n];
		for (int i=0; i<n; i++) {
			wallet[i] = sc.nextInt();
			favorite[i] = sc.nextInt();
		}

		int m = sc.nextInt();
		int[] price = new int[m];
		int[] spicy = new int[m];
		for (int i=0; i<m; i++) {
			price[i] = sc.nextInt();
			spicy[i] = sc.nextInt();
		}

		int[] miracle = new int[m];
		int best = -1;
		for (int i=0; i<n; i++) {
			for (int j=0; j<m; j++) {
				if (wallet[i]>=price[j] && favorite[i]<=spicy[j]) {
					miracle[j]++;
					best = Math.max(best,miracle[j]);
				}
			}
		}

		if (best==-1) {System.out.println(0);}
		else {
			for (int i=0; i<m; i++) {
				if (miracle[i]==best) {System.out.println(i+1);}
			}
		}
	}
}
0