結果

問題 No.2811 Calculation Within Sequence
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-23 01:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 132,100 KB
最終ジャッジ日時 2024-10-23 01:29:37
合計ジャッジ時間 9,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,700 KB
testcase_01 AC 36 ms
52,968 KB
testcase_02 AC 36 ms
53,772 KB
testcase_03 AC 208 ms
131,476 KB
testcase_04 AC 139 ms
131,256 KB
testcase_05 AC 138 ms
131,068 KB
testcase_06 AC 137 ms
131,096 KB
testcase_07 AC 134 ms
131,344 KB
testcase_08 AC 140 ms
131,316 KB
testcase_09 AC 140 ms
131,344 KB
testcase_10 AC 140 ms
131,216 KB
testcase_11 AC 142 ms
131,556 KB
testcase_12 AC 136 ms
131,480 KB
testcase_13 AC 142 ms
131,144 KB
testcase_14 AC 139 ms
131,396 KB
testcase_15 AC 138 ms
131,332 KB
testcase_16 AC 136 ms
131,480 KB
testcase_17 AC 138 ms
131,632 KB
testcase_18 AC 137 ms
131,344 KB
testcase_19 AC 159 ms
131,312 KB
testcase_20 AC 144 ms
131,372 KB
testcase_21 AC 147 ms
131,252 KB
testcase_22 AC 140 ms
131,492 KB
testcase_23 AC 142 ms
132,100 KB
testcase_24 AC 98 ms
107,352 KB
testcase_25 AC 63 ms
80,552 KB
testcase_26 AC 62 ms
83,316 KB
testcase_27 AC 98 ms
98,616 KB
testcase_28 AC 50 ms
68,144 KB
testcase_29 AC 96 ms
99,328 KB
testcase_30 AC 91 ms
96,988 KB
testcase_31 AC 89 ms
104,128 KB
testcase_32 AC 56 ms
73,156 KB
testcase_33 AC 85 ms
99,188 KB
testcase_34 AC 97 ms
100,764 KB
testcase_35 AC 68 ms
88,232 KB
testcase_36 AC 85 ms
98,428 KB
testcase_37 AC 79 ms
94,528 KB
testcase_38 AC 79 ms
98,492 KB
testcase_39 AC 81 ms
96,624 KB
testcase_40 AC 95 ms
107,556 KB
testcase_41 AC 105 ms
98,180 KB
testcase_42 AC 76 ms
87,312 KB
testcase_43 AC 82 ms
98,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2944

def calc_gcd(A, B):
    """
    正の整数A, Bの最大公約数を計算する
    """
    a = max(A, B)
    b = min(A, B)
    while a % b > 0:
        c = a % b
        a = b
        b = c
    return b

def main():
    a, b = map(int, input().split())

    T = list(map(int, input().split()))
    S = list(map(int, input().split()))

    gcd_t = T[0]
    for i in range(1, a):
        gcd_t = calc_gcd(gcd_t, T[i])

    for s in S:
        if s % gcd_t != 0:
            print("No")
            return

    print("Yes")







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