結果
問題 | No.647 明太子 |
ユーザー | shinwisteria |
提出日時 | 2018-03-04 18:33:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 829 bytes |
コンパイル時間 | 3,173 ms |
コンパイル使用メモリ | 77,164 KB |
実行使用メモリ | 54,252 KB |
最終ジャッジ日時 | 2024-06-07 22:14:40 |
合計ジャッジ時間 | 9,611 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,484 KB |
testcase_01 | AC | 124 ms
41,700 KB |
testcase_02 | AC | 122 ms
41,068 KB |
testcase_03 | AC | 123 ms
41,720 KB |
testcase_04 | AC | 127 ms
41,620 KB |
testcase_05 | AC | 125 ms
41,504 KB |
testcase_06 | AC | 132 ms
41,296 KB |
testcase_07 | AC | 132 ms
41,668 KB |
testcase_08 | AC | 131 ms
41,856 KB |
testcase_09 | AC | 195 ms
43,112 KB |
testcase_10 | AC | 201 ms
43,596 KB |
testcase_11 | AC | 171 ms
42,980 KB |
testcase_12 | AC | 196 ms
43,616 KB |
testcase_13 | AC | 206 ms
44,360 KB |
testcase_14 | AC | 426 ms
47,888 KB |
testcase_15 | AC | 244 ms
45,436 KB |
testcase_16 | AC | 198 ms
43,036 KB |
testcase_17 | AC | 450 ms
48,040 KB |
testcase_18 | AC | 469 ms
48,772 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 527 ms
54,252 KB |
testcase_23 | AC | 181 ms
42,420 KB |
ソースコード
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); } } } } } }