結果

問題 No.1250 汝は倍数なりや?
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2023-07-03 20:57:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 248 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,148 KB
最終ジャッジ日時 2024-07-17 18:51:23
合計ジャッジ時間 4,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,568 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 36 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 26 ms
10,368 KB
testcase_16 AC 26 ms
10,496 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,496 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 32 ms
10,624 KB
testcase_25 AC 34 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 31 ms
10,624 KB
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 TLE -
testcase_34 AC 234 ms
20,960 KB
testcase_35 AC 413 ms
28,316 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 220 ms
20,956 KB
testcase_40 AC 256 ms
21,304 KB
testcase_41 TLE -
testcase_42 AC 879 ms
18,124 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while min(a, b) > 0:
        a, b = max(a, b), min(a, b)
        a %= b
    return max(a, b)


(n, h), a = [[*map(int, input().split())] for _ in range(2)]
for ai in a:
    h //= gcd(h, abs(ai))

print("YES" if h == 1 else "NO")
0