結果

問題 No.989 N×Mマス計算(K以上)
ユーザー tentententen
提出日時 2020-08-25 08:09:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 844 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 60,076 KB
最終ジャッジ日時 2024-11-06 11:03:07
合計ジャッジ時間 11,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,056 KB
testcase_01 AC 134 ms
54,144 KB
testcase_02 AC 145 ms
54,288 KB
testcase_03 AC 148 ms
54,132 KB
testcase_04 AC 143 ms
54,020 KB
testcase_05 AC 143 ms
54,200 KB
testcase_06 AC 145 ms
54,140 KB
testcase_07 AC 146 ms
54,384 KB
testcase_08 AC 147 ms
54,272 KB
testcase_09 AC 151 ms
54,240 KB
testcase_10 AC 655 ms
59,540 KB
testcase_11 AC 663 ms
59,488 KB
testcase_12 AC 740 ms
59,936 KB
testcase_13 AC 590 ms
59,740 KB
testcase_14 AC 844 ms
59,876 KB
testcase_15 AC 497 ms
59,596 KB
testcase_16 AC 623 ms
59,708 KB
testcase_17 AC 575 ms
60,076 KB
testcase_18 AC 566 ms
59,368 KB
testcase_19 AC 694 ms
59,592 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();
        boolean isPlus = (sc.next().charAt(0) == '+');
        int[] colums = new int[m];
        for (int i = 0; i < m; i++) {
            colums[i] += sc.nextInt();
        }
        Arrays.sort(colums);
        int[] rows = new int[n];
        for (int i = 0; i < n; i++) {
            rows[i] = sc.nextInt();
        }
        Arrays.sort(rows);
        int idx = n;
        long sum = 0;
        for (int i = 0; i < m; i++) {
            if (isPlus) {
                while (idx > 0 && rows[idx - 1] + colums[i] >= k) {
                    idx--;
                }
            } else {
                while (idx > 0 && rows[idx - 1]  >= (k + colums[i] - 1) / colums[i]) {
                    idx--;
                }
            }
            sum += n - idx;
        }
        System.out.println(sum);
    }
}
0