結果

問題 No.2684 折々の色
ユーザー nikoro256nikoro256
提出日時 2024-03-22 18:04:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,030 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 212,632 KB
最終ジャッジ日時 2024-09-30 10:42:28
合計ジャッジ時間 24,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 44 ms
60,672 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 40 ms
53,248 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 41 ms
57,984 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 39 ms
52,992 KB
testcase_11 AC 509 ms
140,976 KB
testcase_12 AC 313 ms
118,464 KB
testcase_13 AC 422 ms
152,628 KB
testcase_14 AC 248 ms
109,604 KB
testcase_15 AC 396 ms
122,684 KB
testcase_16 AC 188 ms
87,040 KB
testcase_17 AC 322 ms
114,876 KB
testcase_18 AC 455 ms
160,060 KB
testcase_19 AC 413 ms
153,892 KB
testcase_20 AC 280 ms
125,340 KB
testcase_21 AC 191 ms
91,856 KB
testcase_22 AC 561 ms
161,212 KB
testcase_23 AC 382 ms
128,844 KB
testcase_24 AC 249 ms
100,068 KB
testcase_25 AC 296 ms
114,116 KB
testcase_26 AC 515 ms
147,020 KB
testcase_27 AC 330 ms
118,764 KB
testcase_28 AC 410 ms
128,340 KB
testcase_29 AC 661 ms
210,456 KB
testcase_30 AC 671 ms
205,064 KB
testcase_31 AC 541 ms
205,696 KB
testcase_32 AC 805 ms
211,744 KB
testcase_33 AC 611 ms
211,352 KB
testcase_34 AC 647 ms
205,176 KB
testcase_35 AC 648 ms
205,568 KB
testcase_36 AC 545 ms
204,928 KB
testcase_37 AC 604 ms
206,336 KB
testcase_38 AC 762 ms
212,496 KB
testcase_39 AC 767 ms
211,996 KB
testcase_40 AC 773 ms
212,248 KB
testcase_41 AC 771 ms
212,624 KB
testcase_42 AC 767 ms
212,252 KB
testcase_43 AC 812 ms
212,632 KB
testcase_44 AC 787 ms
212,248 KB
testcase_45 AC 838 ms
212,000 KB
testcase_46 AC 777 ms
212,496 KB
testcase_47 AC 40 ms
52,352 KB
testcase_48 AC 39 ms
52,224 KB
testcase_49 AC 38 ms
52,352 KB
testcase_50 AC 40 ms
52,480 KB
testcase_51 AC 35 ms
52,864 KB
testcase_52 AC 36 ms
52,992 KB
testcase_53 AC 38 ms
52,352 KB
testcase_54 AC 39 ms
52,608 KB
testcase_55 AC 40 ms
52,352 KB
testcase_56 WA -
testcase_57 AC 40 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)
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
    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
    if tuple(C[i]) in Cset:
        print('Yes')
        exit(0)
print('No')
0