結果

問題 No.1250 汝は倍数なりや?
ユーザー SDESTINY_kpr
提出日時 2020-10-16 00:01:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 810 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,148 KB
最終ジャッジ日時 2024-07-20 20:09:21
合計ジャッジ時間 3,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# import math #sqrt,gcd,pi,factorial
# import decimal
# import queue # queue
# import bisect
# import heapq # priolity-queue
# from time import time
# from itertools import product,permutations,\
#     combinations,combinations_with_replacement
# 重複あり順列、順列、組み合わせ、重複あり組み合わせ
# import collections # deque
# from operator import itemgetter,mul
# from fractions import Fraction
# from functools import reduce

mod = int(1e9+7)
# mod = 998244353
INF = 1<<50

def readInt():
    return list(map(int,input().split()))

def main():
    n,h = readInt()
    a = readInt()
    ans = 1
    for i in range(n):
        ans *= a[i]
        ans %= h
    if ans==0:
        print("YES")
    else:
        print("NO")
    return

if __name__=='__main__':
    main()
0