結果
| 問題 | No.647 明太子 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-03-04 18:31:15 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 829 bytes |
| 記録 | |
| コンパイル時間 | 4,445 ms |
| コンパイル使用メモリ | 76,952 KB |
| 実行使用メモリ | 52,492 KB |
| 最終ジャッジ日時 | 2024-12-26 08:21:14 |
| 合計ジャッジ時間 | 9,939 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 1 WA * 19 |
ソースコード
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[i] >= count[N]){
N = i;
}
}else{
if(count[j] ==count[N] && count[N] != 0){
System.out.println(j+1);
}else if(count[N] == 0){
System.out.println(N);
}
}
}
}
}
}