結果

問題 No.989 N×Mマス計算(K以上)
ユーザー htensaihtensai
提出日時 2020-02-21 08:41:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 3,247 ms
コンパイル使用メモリ 78,156 KB
実行使用メモリ 60,884 KB
最終ジャッジ日時 2024-10-08 19:46:06
合計ジャッジ時間 10,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,984 KB
testcase_01 AC 123 ms
54,028 KB
testcase_02 AC 137 ms
54,504 KB
testcase_03 AC 140 ms
54,160 KB
testcase_04 AC 140 ms
54,264 KB
testcase_05 AC 140 ms
54,388 KB
testcase_06 AC 136 ms
54,396 KB
testcase_07 AC 136 ms
54,284 KB
testcase_08 AC 136 ms
54,036 KB
testcase_09 AC 139 ms
54,384 KB
testcase_10 AC 666 ms
59,956 KB
testcase_11 AC 637 ms
59,400 KB
testcase_12 AC 699 ms
59,544 KB
testcase_13 AC 547 ms
59,484 KB
testcase_14 AC 772 ms
60,884 KB
testcase_15 AC 480 ms
59,496 KB
testcase_16 AC 590 ms
59,560 KB
testcase_17 AC 545 ms
59,232 KB
testcase_18 AC 529 ms
59,176 KB
testcase_19 AC 641 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        char op = sc.next().charAt(0);
        long[] arrB = new long[m];
        for (int i = 0; i < m; i++) {
            arrB[i] = sc.nextInt();
        }
        Arrays.sort(arrB);
        long[] arrA = new long[n];
        for (int i = 0; i < n; i++) {
            arrA[i] = sc.nextInt();
        }
        Arrays.sort(arrA);
        int idxB = m - 1;
        long count = 0;
        if (op == '+') {
            for (int i = 0; i < n; i++) {
                while (idxB >= 1 && arrB[idxB - 1] + arrA[i] >= k) {
                    idxB--;
                }
                if (arrB[idxB] + arrA[i] >= k) {
                    count += m - idxB;
                }
            }
        } else {
            for (int i = 0; i < n; i++) {
                while (idxB >= 1 && arrB[idxB - 1] * arrA[i] >= k) {
                    idxB--;
                }
                if (arrB[idxB] * arrA[i] >= k) {
                    count += m - idxB;
                }
            }
         }
         System.out.println(count);
    }
}
0