結果

問題 No.647 明太子
ユーザー ほっしいーほっしいー
提出日時 2018-02-10 16:54:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 436 ms / 4,500 ms
コード長 851 bytes
コンパイル時間 3,420 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 48,344 KB
最終ジャッジ日時 2024-06-27 02:39:34
合計ジャッジ時間 9,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,996 KB
testcase_01 AC 111 ms
40,076 KB
testcase_02 AC 124 ms
41,400 KB
testcase_03 AC 123 ms
41,044 KB
testcase_04 AC 119 ms
40,628 KB
testcase_05 AC 113 ms
40,172 KB
testcase_06 AC 124 ms
41,132 KB
testcase_07 AC 134 ms
41,300 KB
testcase_08 AC 132 ms
41,432 KB
testcase_09 AC 178 ms
41,804 KB
testcase_10 AC 183 ms
42,104 KB
testcase_11 AC 171 ms
42,124 KB
testcase_12 AC 183 ms
42,360 KB
testcase_13 AC 187 ms
43,212 KB
testcase_14 AC 367 ms
47,180 KB
testcase_15 AC 206 ms
42,976 KB
testcase_16 AC 171 ms
42,056 KB
testcase_17 AC 368 ms
47,680 KB
testcase_18 AC 380 ms
48,216 KB
testcase_19 AC 271 ms
47,420 KB
testcase_20 AC 270 ms
47,088 KB
testcase_21 AC 215 ms
44,276 KB
testcase_22 AC 436 ms
48,344 KB
testcase_23 AC 166 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n =Integer.parseInt(sc.next(),10);
		int[][] x=new int[n][2];
		for(int i=0;i<n;i++) {
			x[i][0]=Integer.parseInt(sc.next(),10);
			x[i][1]=Integer.parseInt(sc.next(),10);
		}
		int m= Integer.parseInt(sc.next(),10);
		int[][] y=new int[m][2];
		for(int i=0;i<m;i++) {
			y[i][0]=Integer.parseInt(sc.next(),10);
			y[i][1]=Integer.parseInt(sc.next(),10);
		}
		
		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];
		}
		if(max!=0) {
		for(int i=0;i<m;i++) 
			if(max==z[i])
				System.out.println(i+1);
		}else{
			System.out.println(0);
		}
	}

}
0