結果

問題 No.2682 Visible Divisible
ユーザー 👑 tute7627tute7627
提出日時 2023-12-16 02:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 111,376 KB
最終ジャッジ日時 2024-09-27 07:15:47
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
110,804 KB
testcase_01 AC 194 ms
110,952 KB
testcase_02 AC 197 ms
111,040 KB
testcase_03 AC 196 ms
111,248 KB
testcase_04 AC 116 ms
106,472 KB
testcase_05 AC 139 ms
106,716 KB
testcase_06 AC 169 ms
111,376 KB
testcase_07 AC 188 ms
109,820 KB
testcase_08 AC 33 ms
52,652 KB
testcase_09 AC 33 ms
53,648 KB
testcase_10 AC 33 ms
52,720 KB
testcase_11 AC 179 ms
110,784 KB
testcase_12 AC 195 ms
110,724 KB
testcase_13 AC 193 ms
109,852 KB
testcase_14 AC 170 ms
110,520 KB
testcase_15 AC 188 ms
109,516 KB
testcase_16 AC 119 ms
105,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm


n, k = map(int, input().split())
a = list(map(int,input().split()))
x = 1
for v in a:
    x = lcm(x, v)
    x %= k

if x % k == 0:
    print("Yes")
else:
    print("No")
0