結果

問題 No.2684 折々の色
ユーザー nikoro256nikoro256
提出日時 2024-03-22 18:01:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,018 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 225,076 KB
最終ジャッジ日時 2024-09-30 10:41:10
合計ジャッジ時間 29,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,728 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 63 ms
65,024 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 86 ms
73,856 KB
testcase_05 AC 41 ms
52,992 KB
testcase_06 AC 78 ms
69,632 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 79 ms
71,040 KB
testcase_09 AC 54 ms
61,312 KB
testcase_10 AC 64 ms
64,896 KB
testcase_11 AC 1,352 ms
149,636 KB
testcase_12 AC 751 ms
127,504 KB
testcase_13 AC 833 ms
161,540 KB
testcase_14 AC 452 ms
118,608 KB
testcase_15 AC 826 ms
131,988 KB
testcase_16 AC 274 ms
87,088 KB
testcase_17 AC 717 ms
121,612 KB
testcase_18 AC 865 ms
168,092 KB
testcase_19 AC 946 ms
162,444 KB
testcase_20 AC 605 ms
132,416 KB
testcase_21 AC 341 ms
95,052 KB
testcase_22 AC 1,292 ms
168,864 KB
testcase_23 AC 1,271 ms
137,156 KB
testcase_24 AC 557 ms
105,244 KB
testcase_25 AC 816 ms
120,968 KB
testcase_26 AC 1,676 ms
155,580 KB
testcase_27 AC 1,004 ms
127,000 KB
testcase_28 AC 1,254 ms
136,824 KB
testcase_29 TLE -
testcase_30 AC 1,908 ms
213,220 KB
testcase_31 AC 1,112 ms
213,092 KB
testcase_32 TLE -
testcase_33 AC 1,659 ms
219,584 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,201 ms
212,496 KB
testcase_37 AC 1,579 ms
213,396 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

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
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]*mod_inv(100,p)
        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
    for j in range(M):
        C[i][j]*=T[i]*mod_inv(100,p)%p
        C[i][j]%=p
        C[i][j]=X[j]-C[i][j]
        C[i][j]%=p
        C[i][j]*=mod_inv((1-T[i]*mod_inv(100,p))%p,p)
        C[i][j]%=p
    if tuple(C[i]) in Cset:
        print('Yes')
        exit(0)
print('No')
0