結果

問題 No.2684 折々の色
ユーザー titiatitia
提出日時 2024-03-24 01:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,455 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 276,708 KB
最終ジャッジ日時 2024-09-30 13:39:48
合計ジャッジ時間 35,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 47 ms
59,648 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 46 ms
60,032 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 50 ms
59,392 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 46 ms
59,904 KB
testcase_09 AC 44 ms
54,272 KB
testcase_10 AC 46 ms
59,648 KB
testcase_11 AC 625 ms
162,468 KB
testcase_12 AC 413 ms
134,100 KB
testcase_13 AC 595 ms
174,776 KB
testcase_14 AC 294 ms
124,928 KB
testcase_15 AC 502 ms
136,960 KB
testcase_16 AC 161 ms
91,904 KB
testcase_17 AC 394 ms
128,236 KB
testcase_18 AC 526 ms
173,696 KB
testcase_19 AC 536 ms
180,356 KB
testcase_20 AC 359 ms
149,256 KB
testcase_21 AC 231 ms
99,452 KB
testcase_22 AC 736 ms
176,396 KB
testcase_23 AC 533 ms
153,640 KB
testcase_24 AC 323 ms
109,544 KB
testcase_25 AC 410 ms
126,300 KB
testcase_26 AC 700 ms
177,412 KB
testcase_27 AC 462 ms
134,136 KB
testcase_28 AC 574 ms
152,696 KB
testcase_29 AC 1,313 ms
270,576 KB
testcase_30 AC 1,193 ms
264,956 KB
testcase_31 AC 720 ms
262,904 KB
testcase_32 AC 1,217 ms
270,492 KB
testcase_33 AC 964 ms
275,796 KB
testcase_34 AC 1,061 ms
265,316 KB
testcase_35 AC 1,092 ms
265,348 KB
testcase_36 AC 727 ms
262,736 KB
testcase_37 AC 931 ms
265,896 KB
testcase_38 AC 1,384 ms
276,576 KB
testcase_39 AC 1,373 ms
276,312 KB
testcase_40 AC 1,291 ms
276,708 KB
testcase_41 AC 1,276 ms
276,316 KB
testcase_42 AC 1,364 ms
276,324 KB
testcase_43 AC 1,289 ms
276,056 KB
testcase_44 AC 1,281 ms
276,312 KB
testcase_45 AC 1,455 ms
276,064 KB
testcase_46 AC 1,315 ms
276,420 KB
testcase_47 AC 46 ms
53,760 KB
testcase_48 AC 43 ms
54,272 KB
testcase_49 AC 44 ms
53,888 KB
testcase_50 AC 46 ms
54,016 KB
testcase_51 AC 43 ms
53,888 KB
testcase_52 AC 43 ms
54,016 KB
testcase_53 AC 45 ms
53,888 KB
testcase_54 AC 41 ms
54,144 KB
testcase_55 AC 39 ms
54,016 KB
testcase_56 AC 37 ms
53,632 KB
testcase_57 AC 40 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import Counter

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

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

K=Counter()

CC=[]

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

    K[tuple(S)]+=1
    CC.append(tuple(S))


for i in range(N):
    S=[]
    if C[i][-1]==100:
        S=C[i][:-1]

        if tuple(S)==tuple(X):
            print("Yes")
            exit()

        continue
    
    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]))

    K[CC[i]]-=1

    if K[tuple(S)]>0:
        print("Yes")
        exit()

    K[CC[i]]+=1

print("No")
        
0