結果

問題 No.647 明太子
ユーザー tsunabittsunabit
提出日時 2019-06-23 10:14:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 507 ms / 4,500 ms
コード長 999 bytes
コンパイル時間 4,239 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 48,176 KB
最終ジャッジ日時 2024-06-07 23:18:00
合計ジャッジ時間 11,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,100 KB
testcase_01 AC 139 ms
41,448 KB
testcase_02 AC 135 ms
41,360 KB
testcase_03 AC 138 ms
41,404 KB
testcase_04 AC 144 ms
41,400 KB
testcase_05 AC 143 ms
41,264 KB
testcase_06 AC 145 ms
41,328 KB
testcase_07 AC 154 ms
41,784 KB
testcase_08 AC 147 ms
41,660 KB
testcase_09 AC 210 ms
42,940 KB
testcase_10 AC 213 ms
43,608 KB
testcase_11 AC 187 ms
42,672 KB
testcase_12 AC 212 ms
43,560 KB
testcase_13 AC 226 ms
44,920 KB
testcase_14 AC 464 ms
48,008 KB
testcase_15 AC 243 ms
45,944 KB
testcase_16 AC 215 ms
43,368 KB
testcase_17 AC 490 ms
48,120 KB
testcase_18 AC 507 ms
48,176 KB
testcase_19 AC 364 ms
47,852 KB
testcase_20 AC 343 ms
47,848 KB
testcase_21 AC 261 ms
46,728 KB
testcase_22 AC 495 ms
48,072 KB
testcase_23 AC 192 ms
42,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No647 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] a = new int[n], b = new int[n]; 
    	for(int i = 0; i < n; i++) {
    		a[i] = sc.nextInt();
    		b[i] = sc.nextInt();
    	}
    	
    	int m = sc.nextInt();
    	int[] x = new int[m], y = new int[m];
    	for(int i = 0; i < m; i++) {
    		x[i] = sc.nextInt();
    		y[i] = sc.nextInt();
    	}
    	
    	int[] o = new int[m];
    	
    	for(int i = 0; i < m; i++) {
    		for(int j = 0; j < n; j++) {
    			if(a[j] >= x[i] && b[j] <= y[i]) {
    				o[i] = o[i] + 1;
    			}
    		}
    	}
    	int max = 0;
    	for(int i = 0; i < m; i++) {
    		max = max < o[i]? o[i] : max;
    	}
    	if(max == 0) {
    		System.out.println(0);
    	}else {
    		for(int i = 0; i < m; i++) {
        		if(o[i] == max) {
        			System.out.println(i + 1);
        		}
        	}
    	}
    }
}
0