結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,940 KB
testcase_01 AC 130 ms
54,248 KB
testcase_02 WA -
testcase_03 AC 130 ms
54,152 KB
testcase_04 AC 135 ms
53,872 KB
testcase_05 AC 128 ms
54,092 KB
testcase_06 AC 133 ms
54,408 KB
testcase_07 AC 143 ms
54,312 KB
testcase_08 AC 143 ms
54,320 KB
testcase_09 AC 192 ms
56,556 KB
testcase_10 AC 208 ms
57,136 KB
testcase_11 AC 188 ms
54,304 KB
testcase_12 AC 206 ms
56,696 KB
testcase_13 AC 213 ms
56,948 KB
testcase_14 AC 442 ms
59,268 KB
testcase_15 AC 237 ms
57,564 KB
testcase_16 AC 200 ms
57,132 KB
testcase_17 AC 462 ms
59,272 KB
testcase_18 AC 455 ms
59,204 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 464 ms
59,028 KB
testcase_23 AC 178 ms
54,272 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