結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,232 KB
testcase_01 AC 133 ms
41,516 KB
testcase_02 AC 143 ms
41,300 KB
testcase_03 AC 143 ms
41,544 KB
testcase_04 AC 130 ms
40,208 KB
testcase_05 AC 146 ms
41,584 KB
testcase_06 AC 141 ms
41,408 KB
testcase_07 AC 142 ms
41,652 KB
testcase_08 AC 145 ms
41,412 KB
testcase_09 AC 148 ms
41,660 KB
testcase_10 AC 733 ms
49,632 KB
testcase_11 AC 681 ms
48,640 KB
testcase_12 AC 739 ms
48,640 KB
testcase_13 AC 557 ms
48,316 KB
testcase_14 AC 780 ms
52,568 KB
testcase_15 AC 493 ms
48,380 KB
testcase_16 AC 639 ms
48,636 KB
testcase_17 AC 581 ms
48,592 KB
testcase_18 AC 574 ms
48,564 KB
testcase_19 AC 687 ms
48,676 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