結果

問題 No.989 N×Mマス計算(K以上)
ユーザー Mishan5055Mishan5055
提出日時 2020-02-25 17:53:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,291 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 78,656 KB
実行使用メモリ 71,724 KB
最終ジャッジ日時 2024-10-13 12:32:49
合計ジャッジ時間 12,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
46,628 KB
testcase_01 AC 118 ms
41,248 KB
testcase_02 AC 129 ms
41,084 KB
testcase_03 AC 128 ms
41,744 KB
testcase_04 AC 125 ms
41,464 KB
testcase_05 AC 129 ms
40,848 KB
testcase_06 AC 129 ms
41,672 KB
testcase_07 AC 123 ms
41,244 KB
testcase_08 AC 127 ms
41,060 KB
testcase_09 AC 130 ms
41,344 KB
testcase_10 WA -
testcase_11 AC 1,179 ms
60,044 KB
testcase_12 WA -
testcase_13 AC 921 ms
59,400 KB
testcase_14 TLE -
testcase_15 AC 879 ms
69,288 KB
testcase_16 AC 1,567 ms
69,556 KB
testcase_17 AC 745 ms
65,416 KB
testcase_18 AC 641 ms
62,452 KB
testcase_19 AC 1,365 ms
71,668 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();
        PriorityQueue<Integer> pq=new PriorityQueue<>();
        int[] Binv=new int[M];
        
        for(int i=0;i<M;i++){
            pq.add(sc.nextInt());
        }

        long ANS=M*N;
        
        if(str.equals("+")){
            for(int i=0;i<M;i++){
                Binv[M-1-i]=K-pq.poll();
            }
            
            for(int i=0;i<N;i++){
                int A=sc.nextInt();
                for(int j=0;j<M;j++){
                    if(A<Binv[j]){
                        ANS-=M-j;
                        break;
                    }
                }
            }
        }else{
            for(int i=0;i<M;i++){
                int s=pq.poll();
                Binv[M-1-i]=(K+s-1)/s;
            }
            
            for(int i=0;i<N;i++){
                int A=sc.nextInt();
                for(int j=0;j<M;j++){
                    if(A<Binv[j]){
                        ANS-=M-j;
                        break;
                    }
                }
            }
        }

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