結果

問題 No.2811 Calculation Within Sequence
ユーザー KudeKude
提出日時 2024-07-19 21:22:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,984 KB
最終ジャッジ日時 2024-07-19 21:22:24
合計ジャッジ時間 7,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 128 ms
94,956 KB
testcase_04 AC 120 ms
94,940 KB
testcase_05 AC 137 ms
94,956 KB
testcase_06 AC 155 ms
94,576 KB
testcase_07 AC 128 ms
94,576 KB
testcase_08 AC 147 ms
94,576 KB
testcase_09 AC 142 ms
94,576 KB
testcase_10 AC 146 ms
94,832 KB
testcase_11 AC 128 ms
94,324 KB
testcase_12 AC 130 ms
94,448 KB
testcase_13 AC 129 ms
95,060 KB
testcase_14 AC 119 ms
94,692 KB
testcase_15 AC 131 ms
94,956 KB
testcase_16 AC 134 ms
94,820 KB
testcase_17 AC 122 ms
94,940 KB
testcase_18 AC 138 ms
94,572 KB
testcase_19 AC 135 ms
94,820 KB
testcase_20 AC 120 ms
94,572 KB
testcase_21 AC 125 ms
95,056 KB
testcase_22 AC 121 ms
94,948 KB
testcase_23 AC 134 ms
104,984 KB
testcase_24 AC 121 ms
94,080 KB
testcase_25 AC 66 ms
73,216 KB
testcase_26 AC 69 ms
74,496 KB
testcase_27 AC 111 ms
90,752 KB
testcase_28 AC 59 ms
64,896 KB
testcase_29 AC 106 ms
94,464 KB
testcase_30 AC 95 ms
95,872 KB
testcase_31 AC 112 ms
92,672 KB
testcase_32 AC 60 ms
67,840 KB
testcase_33 AC 89 ms
89,728 KB
testcase_34 AC 109 ms
93,696 KB
testcase_35 AC 68 ms
78,336 KB
testcase_36 AC 106 ms
93,824 KB
testcase_37 AC 80 ms
82,816 KB
testcase_38 AC 77 ms
85,120 KB
testcase_39 AC 82 ms
83,840 KB
testcase_40 AC 106 ms
93,952 KB
testcase_41 AC 101 ms
90,496 KB
testcase_42 AC 75 ms
78,592 KB
testcase_43 AC 85 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a, b = map(int, input().split())
g = 0
for x in map(int, input().split()):
    g = gcd(g, x)
for x in map(int, input().split()):
    if x % g:
        print('No')
        break
else:
    print('Yes')
0