結果

問題 No.989 N×Mマス計算(K以上)
ユーザー Mishan5055Mishan5055
提出日時 2020-02-25 18:21:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,058 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 2,512 ms
コンパイル使用メモリ 79,380 KB
実行使用メモリ 59,884 KB
最終ジャッジ日時 2024-10-13 12:37:31
合計ジャッジ時間 12,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,252 KB
testcase_01 AC 136 ms
53,884 KB
testcase_02 AC 148 ms
54,264 KB
testcase_03 AC 149 ms
54,092 KB
testcase_04 AC 141 ms
54,056 KB
testcase_05 AC 145 ms
53,992 KB
testcase_06 AC 145 ms
54,084 KB
testcase_07 AC 144 ms
54,100 KB
testcase_08 AC 143 ms
53,940 KB
testcase_09 AC 147 ms
54,088 KB
testcase_10 AC 827 ms
59,884 KB
testcase_11 AC 768 ms
49,940 KB
testcase_12 AC 794 ms
50,300 KB
testcase_13 AC 635 ms
49,204 KB
testcase_14 AC 1,058 ms
59,032 KB
testcase_15 AC 533 ms
48,716 KB
testcase_16 AC 706 ms
49,916 KB
testcase_17 AC 666 ms
49,080 KB
testcase_18 AC 628 ms
48,564 KB
testcase_19 AC 758 ms
50,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
        String str=sc.next();
        Integer[] B=new Integer[M];
        Integer[] A=new Integer[N];
        
        for(int i=0;i<M;i++){
            B[i]=sc.nextInt();
        }
      
        Arrays.sort(B,Collections.reverseOrder());
        
        for(int i=0;i<N;i++){
            A[i]=sc.nextInt();
        }
        
        Arrays.sort(A,Collections.reverseOrder());

        long ANS=0;
        int idxB=M-1;
      
        if(str.equals("+")){
            for(int j=0;j<N;j++){
                while(idxB>=0&&B[idxB]+A[j]<K){
                    idxB--;
                }
                ANS+=idxB+1;
            }
        }else{
            for(int j=0;j<N;j++){
                while(idxB>=0&&B[idxB]*A[j]<K){
                    idxB--;
                }
                ANS+=idxB+1;
            }
        }

        System.out.println(ANS);
    }
}
0