結果

問題 No.647 明太子
ユーザー Freed_0929Freed_0929
提出日時 2018-02-09 23:13:50
言語 Java21
(openjdk 21)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,241 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 62,748 KB
最終ジャッジ日時 2024-06-27 02:35:34
合計ジャッジ時間 8,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,108 KB
testcase_01 AC 134 ms
53,604 KB
testcase_02 AC 132 ms
53,916 KB
testcase_03 AC 134 ms
53,836 KB
testcase_04 AC 139 ms
53,948 KB
testcase_05 AC 136 ms
54,176 KB
testcase_06 AC 137 ms
54,128 KB
testcase_07 AC 149 ms
54,480 KB
testcase_08 AC 149 ms
53,720 KB
testcase_09 AC 202 ms
56,996 KB
testcase_10 AC 211 ms
56,688 KB
testcase_11 AC 195 ms
54,128 KB
testcase_12 AC 211 ms
56,812 KB
testcase_13 AC 223 ms
56,680 KB
testcase_14 AC 435 ms
58,908 KB
testcase_15 AC 244 ms
57,588 KB
testcase_16 AC 216 ms
56,860 KB
testcase_17 AC 469 ms
59,612 KB
testcase_18 AC 503 ms
59,116 KB
testcase_19 AC 347 ms
58,796 KB
testcase_20 AC 335 ms
58,808 KB
testcase_21 AC 250 ms
57,736 KB
testcase_22 AC 535 ms
62,748 KB
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] A = new int[N];
        int[] B = new int[N];
        int ans = 0;
        int[] result = new int[N];
        int c = 0;
        for (int i = 0; i < N; i++) {
            A[i] = sc.nextInt();
            B[i] = sc.nextInt();
        }
        int M = sc.nextInt();
        int ch = 0;
        lavel:
        for (int i = 0; i < M; i++) {
            int X = sc.nextInt();
            int Y = sc.nextInt();
            ans=0;
            for (int j = 0; j < N; j++) {
                if (X <= A[j] && Y >= B[j]) {
                    ans++;
                }
            }
            if (ch <= ans && ans != 0) {
                if (ch == ans) {
                    c++;
                    result[c] = i + 1;
                } else {
                    Arrays.fill(result, 0);
                    ch = ans;
                    c = 0;
                    result[c] = i + 1;
                }
            }
        }
        for (int i = 0; result[i] != 0 || i == 0; i++) {
            System.out.println(result[i]);
        }
    }
}
0