結果

問題 No.647 明太子
ユーザー shinwisteriashinwisteria
提出日時 2018-03-06 19:25:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 516 ms / 4,500 ms
コード長 857 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 53,856 KB
最終ジャッジ日時 2024-06-27 02:49:27
合計ジャッジ時間 9,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,072 KB
testcase_01 AC 114 ms
39,760 KB
testcase_02 AC 129 ms
41,112 KB
testcase_03 AC 130 ms
41,308 KB
testcase_04 AC 130 ms
41,372 KB
testcase_05 AC 127 ms
41,132 KB
testcase_06 AC 131 ms
41,292 KB
testcase_07 AC 140 ms
41,312 KB
testcase_08 AC 142 ms
41,708 KB
testcase_09 AC 198 ms
43,048 KB
testcase_10 AC 208 ms
43,656 KB
testcase_11 AC 183 ms
42,292 KB
testcase_12 AC 195 ms
43,540 KB
testcase_13 AC 220 ms
44,576 KB
testcase_14 AC 438 ms
48,212 KB
testcase_15 AC 239 ms
46,492 KB
testcase_16 AC 206 ms
43,204 KB
testcase_17 AC 478 ms
47,940 KB
testcase_18 AC 497 ms
51,048 KB
testcase_19 AC 364 ms
48,180 KB
testcase_20 AC 329 ms
47,972 KB
testcase_21 AC 247 ms
46,316 KB
testcase_22 AC 516 ms
53,856 KB
testcase_23 AC 182 ms
42,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con647 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int[][] ab = new int[N][2];
		for(int i = 0;i < N;i++){
			ab[i][0] = s.nextInt();
			ab[i][1] = s.nextInt();
		}
		int M = s.nextInt();
		int[] count = new int[M];
		for(int i = 0;i < M;i++){
			int x = s.nextInt() , y = s.nextInt();
			for(int j = 0;j < N;j++){
				if(ab[j][0] >= x && ab[j][1] <= y){
					count[i]++;
				}
			}
		}
		s.close();

		N = 0;
		for(int i = 0;i < 2;i++){
			for(int j = 0;j < M;j++){
				if(i == 0){
					if(count[j] >= count[N]){
						N = j;
					}
				}else{
					if(count[j] ==count[N] && count[N] != 0){
						System.out.println(j+1);
					}else if(count[N] == 0){
						System.out.println(0);
						break;    //未完成
					}
				}
			}
		}
	}

}
0