結果

問題 No.2682 Visible Divisible
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-12-16 13:41:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 106,072 KB
最終ジャッジ日時 2024-09-27 07:38:27
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
105,676 KB
testcase_01 AC 95 ms
105,712 KB
testcase_02 AC 95 ms
105,792 KB
testcase_03 AC 96 ms
105,480 KB
testcase_04 AC 97 ms
105,836 KB
testcase_05 AC 100 ms
105,796 KB
testcase_06 AC 99 ms
105,872 KB
testcase_07 AC 99 ms
105,088 KB
testcase_08 WA -
testcase_09 AC 34 ms
52,192 KB
testcase_10 AC 33 ms
52,696 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 94 ms
105,248 KB
testcase_14 WA -
testcase_15 AC 96 ms
105,164 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

WA解

Kの倍数があるかだけ探索

"""

import math

N,K = map(int,input().split())
A = list(map(int,input().split()))

flag = False

for a in A:
    if a % K == 0:
        flag = True

if flag:
    print ("Yes")
else:
    print ("No")
0