結果

問題 No.1250 汝は倍数なりや?
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-11 09:06:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 750 ms / 1,000 ms
コード長 391 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-10-12 23:24:56
合計ジャッジ時間 18,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,300 KB
testcase_01 AC 122 ms
41,200 KB
testcase_02 AC 105 ms
40,012 KB
testcase_03 AC 120 ms
41,072 KB
testcase_04 AC 119 ms
41,164 KB
testcase_05 AC 125 ms
41,312 KB
testcase_06 AC 119 ms
41,296 KB
testcase_07 AC 125 ms
41,028 KB
testcase_08 AC 103 ms
40,284 KB
testcase_09 AC 107 ms
39,808 KB
testcase_10 AC 119 ms
41,188 KB
testcase_11 AC 127 ms
41,252 KB
testcase_12 AC 121 ms
41,344 KB
testcase_13 AC 125 ms
41,136 KB
testcase_14 AC 129 ms
41,392 KB
testcase_15 AC 131 ms
41,432 KB
testcase_16 AC 129 ms
41,420 KB
testcase_17 AC 109 ms
39,852 KB
testcase_18 AC 131 ms
41,320 KB
testcase_19 AC 106 ms
39,932 KB
testcase_20 AC 135 ms
41,544 KB
testcase_21 AC 107 ms
40,284 KB
testcase_22 AC 124 ms
41,120 KB
testcase_23 AC 161 ms
41,804 KB
testcase_24 AC 166 ms
41,804 KB
testcase_25 AC 171 ms
42,400 KB
testcase_26 AC 150 ms
41,680 KB
testcase_27 AC 174 ms
42,316 KB
testcase_28 AC 161 ms
41,824 KB
testcase_29 AC 152 ms
41,496 KB
testcase_30 AC 171 ms
42,388 KB
testcase_31 AC 153 ms
41,292 KB
testcase_32 AC 171 ms
42,356 KB
testcase_33 AC 750 ms
54,116 KB
testcase_34 AC 643 ms
48,144 KB
testcase_35 AC 723 ms
52,136 KB
testcase_36 AC 712 ms
52,512 KB
testcase_37 AC 573 ms
48,060 KB
testcase_38 AC 589 ms
48,904 KB
testcase_39 AC 589 ms
47,980 KB
testcase_40 AC 576 ms
48,344 KB
testcase_41 AC 632 ms
49,888 KB
testcase_42 AC 496 ms
46,680 KB
testcase_43 AC 702 ms
52,608 KB
testcase_44 AC 579 ms
47,896 KB
testcase_45 AC 654 ms
52,964 KB
testcase_46 AC 476 ms
47,848 KB
testcase_47 AC 601 ms
47,940 KB
testcase_48 AC 117 ms
41,008 KB
testcase_49 AC 124 ms
41,340 KB
testcase_50 AC 121 ms
41,344 KB
testcase_51 AC 114 ms
40,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	long n = sc.nextLong();
	    	long h = sc.nextLong();
	    	long ans = 1;
	    	for (int i = 0; i < n; i ++) {
	    		ans = ans * sc.nextLong() % h;
	    	}

	    	System.out.println(ans == 0? "YES" : "NO");
	    	}

	    }
0