結果
| 問題 | No.647 明太子 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 17 WA * 3 |
ソースコード
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);
}
}
}
}
}
}