結果

問題 No.647 明太子
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 18:33:11
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 3,525 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 51,772 KB
最終ジャッジ日時 2024-12-26 08:21:27
合計ジャッジ時間 10,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,108 KB
testcase_01 AC 138 ms
40,940 KB
testcase_02 AC 135 ms
40,852 KB
testcase_03 AC 146 ms
41,028 KB
testcase_04 AC 149 ms
41,084 KB
testcase_05 AC 135 ms
41,272 KB
testcase_06 AC 135 ms
40,924 KB
testcase_07 AC 148 ms
41,252 KB
testcase_08 AC 138 ms
40,788 KB
testcase_09 AC 206 ms
42,784 KB
testcase_10 AC 227 ms
43,392 KB
testcase_11 AC 207 ms
42,044 KB
testcase_12 AC 212 ms
43,328 KB
testcase_13 AC 237 ms
44,032 KB
testcase_14 AC 476 ms
47,900 KB
testcase_15 AC 259 ms
45,216 KB
testcase_16 AC 219 ms
42,724 KB
testcase_17 AC 533 ms
48,476 KB
testcase_18 AC 547 ms
47,904 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 583 ms
51,772 KB
testcase_23 AC 205 ms
41,736 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(N);
					}
				}
			}
		}
	}

}
0