結果

問題 No.1250 汝は倍数なりや?
ユーザー Nitish SongaraNitish Songara
提出日時 2020-10-10 01:09:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 53,988 KB
最終ジャッジ日時 2024-07-20 15:11:12
合計ジャッジ時間 21,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,472 KB
testcase_01 AC 136 ms
41,268 KB
testcase_02 AC 136 ms
41,300 KB
testcase_03 AC 135 ms
41,116 KB
testcase_04 AC 137 ms
41,444 KB
testcase_05 AC 134 ms
41,248 KB
testcase_06 AC 137 ms
41,288 KB
testcase_07 AC 137 ms
41,296 KB
testcase_08 AC 136 ms
41,396 KB
testcase_09 AC 136 ms
41,336 KB
testcase_10 AC 138 ms
41,300 KB
testcase_11 WA -
testcase_12 AC 150 ms
41,360 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 144 ms
41,156 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 135 ms
41,156 KB
testcase_20 WA -
testcase_21 AC 138 ms
41,248 KB
testcase_22 WA -
testcase_23 AC 190 ms
42,212 KB
testcase_24 AC 191 ms
42,180 KB
testcase_25 AC 200 ms
43,028 KB
testcase_26 WA -
testcase_27 AC 204 ms
42,280 KB
testcase_28 WA -
testcase_29 AC 177 ms
41,952 KB
testcase_30 WA -
testcase_31 AC 151 ms
41,396 KB
testcase_32 WA -
testcase_33 AC 838 ms
53,988 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 689 ms
48,116 KB
testcase_38 AC 714 ms
48,908 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 716 ms
51,376 KB
testcase_42 AC 626 ms
48,556 KB
testcase_43 AC 795 ms
52,288 KB
testcase_44 AC 607 ms
47,900 KB
testcase_45 WA -
testcase_46 AC 530 ms
47,800 KB
testcase_47 WA -
testcase_48 AC 134 ms
41,460 KB
testcase_49 AC 135 ms
41,288 KB
testcase_50 WA -
testcase_51 AC 135 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Solution{
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        boolean done = false;
        for(int i=0;i<n;i++){
            int cur = sc.nextInt();
            if(cur%k == 0){
                done = true;
                break;
            }
        }
        sc.close();
        if(done)
            System.out.println("YES");
        else
            System.out.println("NO");
    }
}
0