結果

問題 No.1250 汝は倍数なりや?
ユーザー kusagame12kusagame12
提出日時 2023-11-06 18:35:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 829 ms / 1,000 ms
コード長 628 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 75,312 KB
実行使用メモリ 54,608 KB
最終ジャッジ日時 2024-09-25 23:06:33
合計ジャッジ時間 21,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,956 KB
testcase_01 AC 127 ms
41,356 KB
testcase_02 AC 115 ms
40,160 KB
testcase_03 AC 128 ms
41,064 KB
testcase_04 AC 131 ms
41,372 KB
testcase_05 AC 131 ms
41,212 KB
testcase_06 AC 130 ms
41,156 KB
testcase_07 AC 128 ms
40,972 KB
testcase_08 AC 131 ms
41,284 KB
testcase_09 AC 115 ms
40,004 KB
testcase_10 AC 129 ms
41,496 KB
testcase_11 AC 127 ms
41,128 KB
testcase_12 AC 130 ms
41,188 KB
testcase_13 AC 140 ms
41,376 KB
testcase_14 AC 139 ms
41,416 KB
testcase_15 AC 137 ms
41,064 KB
testcase_16 AC 135 ms
41,220 KB
testcase_17 AC 134 ms
41,272 KB
testcase_18 AC 136 ms
41,460 KB
testcase_19 AC 132 ms
41,240 KB
testcase_20 AC 137 ms
41,032 KB
testcase_21 AC 131 ms
41,252 KB
testcase_22 AC 135 ms
41,444 KB
testcase_23 AC 183 ms
42,148 KB
testcase_24 AC 177 ms
42,160 KB
testcase_25 AC 178 ms
42,288 KB
testcase_26 AC 156 ms
41,656 KB
testcase_27 AC 180 ms
42,476 KB
testcase_28 AC 178 ms
41,904 KB
testcase_29 AC 171 ms
41,668 KB
testcase_30 AC 185 ms
42,208 KB
testcase_31 AC 172 ms
41,640 KB
testcase_32 AC 180 ms
42,500 KB
testcase_33 AC 829 ms
54,608 KB
testcase_34 AC 643 ms
48,632 KB
testcase_35 AC 690 ms
52,980 KB
testcase_36 AC 778 ms
53,952 KB
testcase_37 AC 632 ms
48,340 KB
testcase_38 AC 660 ms
49,404 KB
testcase_39 AC 648 ms
48,204 KB
testcase_40 AC 638 ms
48,800 KB
testcase_41 AC 733 ms
50,192 KB
testcase_42 AC 604 ms
48,384 KB
testcase_43 AC 787 ms
53,052 KB
testcase_44 AC 602 ms
48,232 KB
testcase_45 AC 824 ms
53,256 KB
testcase_46 AC 525 ms
48,064 KB
testcase_47 AC 658 ms
49,120 KB
testcase_48 AC 133 ms
40,964 KB
testcase_49 AC 139 ms
41,060 KB
testcase_50 AC 135 ms
41,008 KB
testcase_51 AC 133 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int h = sc.nextInt();
        int[] as = new int[n];
       
        long data = 1l;
        if(h == 1){
            System.out.println("YES");
            return;
        }
        for(int i = 0 ; i < n ; i++){
            
            int a = sc.nextInt();
            
            data = (data % h) * (a % h);
            
        }
       
        System.out.println(data % h == 0 ? "YES" : "NO");
        
    }
   
}

0