結果

問題 No.2684 折々の色
ユーザー mymelochanmymelochan
提出日時 2024-03-20 22:29:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,410 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 282,976 KB
最終ジャッジ日時 2024-09-30 08:28:38
合計ジャッジ時間 29,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,656 KB
testcase_01 AC 43 ms
54,272 KB
testcase_02 AC 51 ms
61,312 KB
testcase_03 AC 45 ms
54,272 KB
testcase_04 AC 48 ms
60,800 KB
testcase_05 AC 43 ms
54,912 KB
testcase_06 AC 44 ms
55,168 KB
testcase_07 AC 51 ms
54,528 KB
testcase_08 AC 52 ms
60,452 KB
testcase_09 AC 43 ms
54,784 KB
testcase_10 AC 44 ms
55,168 KB
testcase_11 AC 380 ms
142,140 KB
testcase_12 AC 256 ms
113,280 KB
testcase_13 AC 631 ms
187,976 KB
testcase_14 AC 353 ms
129,792 KB
testcase_15 AC 287 ms
117,504 KB
testcase_16 AC 113 ms
83,328 KB
testcase_17 AC 241 ms
107,008 KB
testcase_18 AC 579 ms
182,104 KB
testcase_19 AC 607 ms
189,952 KB
testcase_20 AC 437 ms
157,056 KB
testcase_21 AC 219 ms
99,456 KB
testcase_22 AC 689 ms
201,524 KB
testcase_23 AC 492 ms
164,992 KB
testcase_24 AC 303 ms
113,024 KB
testcase_25 AC 389 ms
136,064 KB
testcase_26 AC 592 ms
194,840 KB
testcase_27 AC 389 ms
144,768 KB
testcase_28 AC 478 ms
164,608 KB
testcase_29 AC 579 ms
196,148 KB
testcase_30 AC 538 ms
187,136 KB
testcase_31 AC 1,096 ms
274,884 KB
testcase_32 AC 649 ms
226,056 KB
testcase_33 AC 497 ms
176,768 KB
testcase_34 AC 626 ms
196,984 KB
testcase_35 AC 599 ms
196,456 KB
testcase_36 AC 1,057 ms
274,676 KB
testcase_37 AC 990 ms
272,768 KB
testcase_38 AC 1,159 ms
279,552 KB
testcase_39 AC 1,183 ms
279,424 KB
testcase_40 AC 1,162 ms
282,976 KB
testcase_41 AC 1,090 ms
280,704 KB
testcase_42 AC 1,146 ms
279,296 KB
testcase_43 AC 1,158 ms
279,552 KB
testcase_44 AC 1,137 ms
279,296 KB
testcase_45 AC 1,177 ms
279,552 KB
testcase_46 AC 1,108 ms
280,448 KB
testcase_47 AC 46 ms
55,168 KB
testcase_48 AC 45 ms
54,656 KB
testcase_49 AC 44 ms
55,040 KB
testcase_50 AC 44 ms
54,912 KB
testcase_51 AC 45 ms
54,144 KB
testcase_52 AC 43 ms
54,400 KB
testcase_53 AC 43 ms
54,528 KB
testcase_54 AC 45 ms
54,784 KB
testcase_55 AC 44 ms
55,296 KB
testcase_56 AC 42 ms
54,528 KB
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M = lmin()
X = lmin()

C = []
T = []
for i in range(N):
    L = lmin()
    C.append(tuple(L[:-1]))
    T.append(L[-1])


S = set()
for i in range(N):

    tpl = []
    for j in range(M):
        u = 10000*X[j]-100*T[i]*C[i][j]
        d = 100-T[i]
        if d == 0:
            break
        if u%d != 0:
            break
        tpl.append(u//d)
    else:
        tpl = tuple(tpl)
        if tpl in S:
            print("Yes")
            exit()

    S.add(tuple(C[i][j]*T[i] for j in range(M)))

C.reverse()
T.reverse()
S = set()
for i in range(N):

    tpl = []
    for j in range(M):
        u = 10000*X[j]-100*T[i]*C[i][j]
        d = 100-T[i]
        if d == 0:
            break
        if u%d != 0:
            break
        tpl.append(u//d)
    else:
        tpl = tuple(tpl)
        if tpl in S:
            print("Yes")
            exit()
            
    S.add(tuple(C[i][j]*T[i] for j in range(M)))

print("No")
0