結果

問題 No.647 明太子
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 23:07:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 544 ms / 4,500 ms
コード長 623 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 63,904 KB
最終ジャッジ日時 2024-06-30 17:45:23
合計ジャッジ時間 8,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,172 KB
testcase_01 AC 127 ms
54,068 KB
testcase_02 AC 127 ms
54,080 KB
testcase_03 AC 127 ms
54,124 KB
testcase_04 AC 130 ms
54,036 KB
testcase_05 AC 129 ms
54,120 KB
testcase_06 AC 130 ms
53,852 KB
testcase_07 AC 136 ms
53,996 KB
testcase_08 AC 144 ms
54,216 KB
testcase_09 AC 200 ms
56,704 KB
testcase_10 AC 206 ms
56,608 KB
testcase_11 AC 182 ms
54,224 KB
testcase_12 AC 203 ms
56,768 KB
testcase_13 AC 212 ms
56,956 KB
testcase_14 AC 402 ms
59,304 KB
testcase_15 AC 230 ms
57,496 KB
testcase_16 AC 200 ms
56,928 KB
testcase_17 AC 445 ms
59,432 KB
testcase_18 AC 452 ms
59,188 KB
testcase_19 AC 337 ms
58,952 KB
testcase_20 AC 308 ms
58,648 KB
testcase_21 AC 241 ms
57,472 KB
testcase_22 AC 544 ms
63,904 KB
testcase_23 AC 182 ms
54,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no647{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,m,a[]=new int[10000],b[]=new int[10000],c[]=new int[1000],x,y,i,j,max=1;
		n=stdIn.nextInt();
		for(i=0;i<n;i++) {
			a[i]=stdIn.nextInt();
			b[i]=stdIn.nextInt();
		}
		m=stdIn.nextInt();
		for(i=0;i<m;i++) {
			x=stdIn.nextInt();
			y=stdIn.nextInt();
			for(j=0;j<n;j++) if(a[j]>=x&&b[j]<=y) c[i]++;
			if(max<c[i]) max=c[i];
		}
		j=0;
		for(i=0;i<m;i++) {
			if(c[i]==max) {
				System.out.println(i+1);
				j++;
			}
		}
		if(j==0) System.out.print("0");
	}
}
0