結果

問題 No.647 明太子
ユーザー ほっしいーほっしいー
提出日時 2018-02-10 16:40:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 61,708 KB
最終ジャッジ日時 2024-06-07 22:04:05
合計ジャッジ時間 9,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,280 KB
testcase_01 AC 129 ms
54,084 KB
testcase_02 WA -
testcase_03 AC 128 ms
53,980 KB
testcase_04 AC 131 ms
54,040 KB
testcase_05 AC 129 ms
54,352 KB
testcase_06 AC 134 ms
54,352 KB
testcase_07 AC 142 ms
54,356 KB
testcase_08 AC 139 ms
54,068 KB
testcase_09 AC 196 ms
56,712 KB
testcase_10 AC 202 ms
56,984 KB
testcase_11 AC 187 ms
54,408 KB
testcase_12 AC 208 ms
57,060 KB
testcase_13 AC 212 ms
57,312 KB
testcase_14 AC 442 ms
59,172 KB
testcase_15 AC 240 ms
57,600 KB
testcase_16 AC 203 ms
56,788 KB
testcase_17 AC 480 ms
59,412 KB
testcase_18 AC 470 ms
58,864 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 479 ms
59,296 KB
testcase_23 AC 190 ms
54,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class 明太子 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] x=new int[n][2];
		for(int i=0;i<n;i++) {
			x[i][0]=sc.nextInt();
			x[i][1]=sc.nextInt();
		}
		int m= sc.nextInt();
		int[][] y=new int[m][2];
		for(int i=0;i<m;i++) {
			y[i][0]=sc.nextInt();
			y[i][1]=sc.nextInt();
		}
		
		int[] z=new int[m];
		for(int i=0;i<m;i++) {
			z[i]=0;
			for(int j=0;j<n;j++) 
				if((x[j][0]>=y[i][0])&&(x[j][1]<=y[i][1]))
					z[i]++;
		}
		int max=0;
		for(int i=0;i<m;i++) {
			if(max<z[i])
				max=z[i];
		}
		for(int i=0;i<m;i++) {
			if(max==z[i])
				System.out.println(i+1);
		}
	}

}
0