結果

問題 No.2684 折々の色
ユーザー nikoro256nikoro256
提出日時 2024-03-22 18:10:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,330 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 277,616 KB
最終ジャッジ日時 2024-09-30 10:43:05
合計ジャッジ時間 34,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 40 ms
57,984 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 46 ms
60,544 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 41 ms
58,112 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 41 ms
58,496 KB
testcase_09 AC 39 ms
53,120 KB
testcase_10 AC 40 ms
57,984 KB
testcase_11 AC 683 ms
197,628 KB
testcase_12 AC 426 ms
150,804 KB
testcase_13 AC 505 ms
193,128 KB
testcase_14 AC 280 ms
125,372 KB
testcase_15 AC 501 ms
164,656 KB
testcase_16 AC 196 ms
93,088 KB
testcase_17 AC 381 ms
141,648 KB
testcase_18 AC 541 ms
200,616 KB
testcase_19 AC 534 ms
196,684 KB
testcase_20 AC 344 ms
147,620 KB
testcase_21 AC 250 ms
106,484 KB
testcase_22 AC 811 ms
237,120 KB
testcase_23 AC 537 ms
180,444 KB
testcase_24 AC 338 ms
124,512 KB
testcase_25 AC 439 ms
148,180 KB
testcase_26 AC 742 ms
219,264 KB
testcase_27 AC 486 ms
159,988 KB
testcase_28 AC 558 ms
179,456 KB
testcase_29 AC 1,019 ms
271,660 KB
testcase_30 AC 1,003 ms
277,616 KB
testcase_31 AC 680 ms
254,236 KB
testcase_32 AC 1,247 ms
277,108 KB
testcase_33 AC 871 ms
271,524 KB
testcase_34 AC 1,025 ms
268,220 KB
testcase_35 AC 1,032 ms
268,564 KB
testcase_36 AC 698 ms
254,744 KB
testcase_37 AC 853 ms
274,960 KB
testcase_38 AC 1,330 ms
273,376 KB
testcase_39 AC 1,269 ms
273,348 KB
testcase_40 AC 1,264 ms
273,784 KB
testcase_41 AC 1,270 ms
273,664 KB
testcase_42 AC 1,236 ms
273,200 KB
testcase_43 AC 1,288 ms
274,724 KB
testcase_44 AC 1,269 ms
273,692 KB
testcase_45 AC 1,311 ms
273,744 KB
testcase_46 AC 1,306 ms
273,236 KB
testcase_47 AC 36 ms
52,848 KB
testcase_48 AC 37 ms
52,480 KB
testcase_49 AC 36 ms
52,736 KB
testcase_50 AC 37 ms
52,736 KB
testcase_51 AC 36 ms
52,608 KB
testcase_52 AC 37 ms
52,992 KB
testcase_53 AC 37 ms
52,864 KB
testcase_54 AC 35 ms
52,736 KB
testcase_55 AC 36 ms
52,736 KB
testcase_56 AC 35 ms
52,480 KB
testcase_57 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

#以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x

import sys
input=sys.stdin.readline
N,M=map(int,input().split())
X=list(map(int,input().split()))
C=[]
T=[]
Cset=set()
p=998244353
inv100=mod_inv(100,p)
Cts=[]
for i in range(N):
    c=list(map(int,input().split()))
    C.append(c[:-1])
    T.append(c[-1])
    Ct=c[:-1]
    for i in range(M):
        Ct[i]*=T[-1]*inv100
        Ct[i]%=p
    Cts.append(Ct)
    Cset.add(tuple(Ct))
for i in range(N):
    if T[i]==100:
        if C[i]==X:
            print('Yes')
            exit(0)
        continue
    tinv=mod_inv((1-T[i]*inv100)%p,p)
    for j in range(M):
        C[i][j]*=T[i]*inv100%p
        C[i][j]%=p
        C[i][j]=X[j]-C[i][j]
        C[i][j]%=p
        C[i][j]*=tinv
        C[i][j]%=p
    Cset.remove(tuple(Cts[i]))
    if tuple(C[i]) in (Cset):
        print('Yes')
        exit(0)
    Cset.add(tuple(Cts[i]))
print('No')
0