結果

問題 No.2684 折々の色
ユーザー titiatitia
提出日時 2024-03-24 01:18:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 190,440 KB
最終ジャッジ日時 2024-09-30 13:39:08
合計ジャッジ時間 22,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 339 ms
125,376 KB
testcase_12 AC 245 ms
110,656 KB
testcase_13 AC 341 ms
132,460 KB
testcase_14 AC 196 ms
104,192 KB
testcase_15 AC 259 ms
114,224 KB
testcase_16 AC 119 ms
86,912 KB
testcase_17 AC 228 ms
106,732 KB
testcase_18 AC 323 ms
129,628 KB
testcase_19 AC 371 ms
134,104 KB
testcase_20 AC 259 ms
118,992 KB
testcase_21 AC 147 ms
92,544 KB
testcase_22 AC 355 ms
129,948 KB
testcase_23 AC 308 ms
123,548 KB
testcase_24 AC 165 ms
96,144 KB
testcase_25 AC 226 ms
108,060 KB
testcase_26 AC 370 ms
137,016 KB
testcase_27 AC 258 ms
110,932 KB
testcase_28 AC 320 ms
122,380 KB
testcase_29 AC 585 ms
186,428 KB
testcase_30 AC 554 ms
184,476 KB
testcase_31 AC 513 ms
184,688 KB
testcase_32 AC 642 ms
187,040 KB
testcase_33 AC 588 ms
186,436 KB
testcase_34 AC 616 ms
183,884 KB
testcase_35 AC 566 ms
184,644 KB
testcase_36 AC 550 ms
184,456 KB
testcase_37 AC 577 ms
184,704 KB
testcase_38 AC 707 ms
190,060 KB
testcase_39 AC 695 ms
189,944 KB
testcase_40 AC 621 ms
189,928 KB
testcase_41 AC 676 ms
189,540 KB
testcase_42 AC 720 ms
190,440 KB
testcase_43 AC 663 ms
190,060 KB
testcase_44 AC 705 ms
189,680 KB
testcase_45 AC 680 ms
190,064 KB
testcase_46 AC 628 ms
190,180 KB
testcase_47 AC 38 ms
52,352 KB
testcase_48 AC 36 ms
52,224 KB
testcase_49 AC 35 ms
52,224 KB
testcase_50 AC 35 ms
52,096 KB
testcase_51 AC 35 ms
52,224 KB
testcase_52 AC 35 ms
52,480 KB
testcase_53 AC 34 ms
52,736 KB
testcase_54 AC 41 ms
52,352 KB
testcase_55 AC 38 ms
51,968 KB
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
X=list(map(int,input().split()))

C=[list(map(int,input().split())) for i in range(N)]

K=set()

for i in range(N):
    S=[]
    for j in range(M):
        S.append(C[i][j]*C[i][-1])

    K.add(tuple(S))


for i in range(N):
    S=[]
    for j in range(M):
        if C[i][-1]!=100 and (10000*X[j]-100*C[i][-1]*C[i][j])%(100-C[i][-1])==0:
            S.append((10000*X[j]-100*C[i][-1]*C[i][j])//(100-C[i][-1]))

    if tuple(S) in K:
        print("Yes")
        exit()

print("No")
0