結果

問題 No.647 明太子
ユーザー yamakasa3yamakasa3
提出日時 2018-03-30 18:31:40
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,677 bytes
コンパイル時間 3,915 ms
コンパイル使用メモリ 78,944 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-27 02:53:32
合計ジャッジ時間 10,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,420 KB
testcase_01 AC 137 ms
41,760 KB
testcase_02 AC 145 ms
41,776 KB
testcase_03 AC 122 ms
40,152 KB
testcase_04 AC 144 ms
41,172 KB
testcase_05 AC 141 ms
41,204 KB
testcase_06 AC 137 ms
41,172 KB
testcase_07 AC 164 ms
41,572 KB
testcase_08 AC 155 ms
41,540 KB
testcase_09 AC 215 ms
43,464 KB
testcase_10 AC 218 ms
44,128 KB
testcase_11 AC 200 ms
42,836 KB
testcase_12 AC 218 ms
43,736 KB
testcase_13 AC 236 ms
45,104 KB
testcase_14 AC 465 ms
48,060 KB
testcase_15 AC 242 ms
45,440 KB
testcase_16 AC 215 ms
42,928 KB
testcase_17 AC 490 ms
48,052 KB
testcase_18 AC 457 ms
47,668 KB
testcase_19 AC 374 ms
48,156 KB
testcase_20 AC 356 ms
48,012 KB
testcase_21 AC 277 ms
47,364 KB
testcase_22 AC 468 ms
47,828 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Mentaiko {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();
		int []A = new int[N];
		int []B = new int[N];
		int count1 = 0;
		int count2 = 0;
		for(int i = 0; i < 2 * N; i++){
			int k = scanner.nextInt();
		    if(i % 2 == 0) {
		    	A[count1] = k;
		    	count1++;
		    }else if(i % 2 == 1){
		    	B[count2] = k;
		    	count2++;
		    }
		}
		int M = scanner.nextInt();
		int []X = new int[M];
		int []Y = new int[M];
		int count3 = 0;
		int count4 = 0;
		for(int i = 0; i < 2 * M; i++){
			int k = scanner.nextInt();
		    if(i % 2 == 0) {
		    	X[count3] = k;
		    	count3++;
		    }else if(i % 2 == 1){
		    	Y[count4] = k;
		    	count4++;
		    }
		}
		scanner.close();
		int []sumM = new int[M];
		Arrays.fill(sumM, 0);

		int flag = 0;
		for(int i = 0; i < N; i++) {
			for(int j = 0; j < M; j++) {
				if(X[j] <= A[i] && Y[j] >= B[i]) {
					sumM[j]++;
					flag++;
				}
			}
		}
		// 該当なし
		if(flag == 0) {
			System.out.println("0");
			System.exit(0);
		}
//		for(int i = 0; i < M; i++) {
//			System.out.println(sumM[i]);
//		}
		int k = 0;
		int max = sumM[0];
		int ans = 0;
		ArrayList<Integer> array = new ArrayList<Integer>();
		for(int i = 0; i < M; i++) {
			k = sumM[i];
			if(k == max) {
				array.add(i + 1);
				ans = i + 1;
			}else if(k > max) {
				max = k;
				ans = i + 1;
				array.clear();
			}
		}
		if(array.size() > 1) {
			for(int i = 0; i < array.size(); i++) {
				System.out.println(array.get(i));
			}
		}else if(max != 0){
			System.out.println(ans);
		}
	}
}
0