結果

問題 No.2811 Calculation Within Sequence
ユーザー moon17moon17
提出日時 2024-07-19 22:23:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,864 KB
最終ジャッジ日時 2024-07-19 22:24:08
合計ジャッジ時間 8,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 144 ms
110,440 KB
testcase_04 AC 146 ms
110,444 KB
testcase_05 AC 154 ms
110,436 KB
testcase_06 AC 159 ms
110,364 KB
testcase_07 AC 139 ms
110,560 KB
testcase_08 AC 164 ms
110,696 KB
testcase_09 AC 153 ms
110,820 KB
testcase_10 AC 153 ms
110,620 KB
testcase_11 AC 139 ms
110,484 KB
testcase_12 AC 144 ms
110,232 KB
testcase_13 AC 142 ms
110,792 KB
testcase_14 AC 131 ms
111,240 KB
testcase_15 AC 139 ms
110,444 KB
testcase_16 AC 155 ms
110,360 KB
testcase_17 AC 126 ms
111,416 KB
testcase_18 AC 150 ms
110,612 KB
testcase_19 AC 147 ms
110,428 KB
testcase_20 AC 129 ms
110,616 KB
testcase_21 AC 128 ms
111,400 KB
testcase_22 AC 128 ms
111,124 KB
testcase_23 AC 129 ms
111,864 KB
testcase_24 AC 137 ms
106,368 KB
testcase_25 AC 69 ms
77,568 KB
testcase_26 AC 67 ms
80,896 KB
testcase_27 AC 119 ms
101,960 KB
testcase_28 AC 58 ms
66,816 KB
testcase_29 AC 98 ms
99,840 KB
testcase_30 AC 92 ms
99,864 KB
testcase_31 AC 108 ms
102,400 KB
testcase_32 AC 53 ms
71,168 KB
testcase_33 AC 93 ms
100,352 KB
testcase_34 AC 106 ms
100,736 KB
testcase_35 AC 66 ms
84,992 KB
testcase_36 AC 100 ms
99,620 KB
testcase_37 AC 75 ms
90,368 KB
testcase_38 AC 79 ms
94,720 KB
testcase_39 AC 88 ms
92,160 KB
testcase_40 AC 102 ms
105,984 KB
testcase_41 AC 96 ms
101,304 KB
testcase_42 AC 69 ms
84,864 KB
testcase_43 AC 87 ms
95,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import*
(a,b),t,s=[[*map(int,s.split())]for s in open(0)]
g=t[0]
for i in t:
  g=gcd(g,i)
for i in s:
  if i%g:
    exit(print('No'))
print('Yes')
0