結果

問題 No.2684 折々の色
ユーザー flygonflygon
提出日時 2024-03-20 22:55:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,048 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 205,224 KB
最終ジャッジ日時 2024-09-30 09:04:14
合計ジャッジ時間 25,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 42 ms
54,656 KB
testcase_02 AC 48 ms
60,672 KB
testcase_03 AC 43 ms
54,400 KB
testcase_04 AC 47 ms
60,672 KB
testcase_05 AC 43 ms
54,656 KB
testcase_06 AC 47 ms
60,160 KB
testcase_07 AC 47 ms
54,784 KB
testcase_08 AC 48 ms
60,160 KB
testcase_09 AC 44 ms
55,424 KB
testcase_10 AC 44 ms
54,784 KB
testcase_11 AC 427 ms
134,472 KB
testcase_12 AC 321 ms
116,864 KB
testcase_13 AC 494 ms
146,912 KB
testcase_14 AC 279 ms
109,824 KB
testcase_15 AC 326 ms
117,504 KB
testcase_16 AC 165 ms
87,936 KB
testcase_17 AC 299 ms
112,256 KB
testcase_18 AC 456 ms
149,916 KB
testcase_19 AC 495 ms
145,168 KB
testcase_20 AC 372 ms
122,104 KB
testcase_21 AC 171 ms
92,672 KB
testcase_22 AC 436 ms
149,576 KB
testcase_23 AC 352 ms
125,952 KB
testcase_24 AC 202 ms
100,364 KB
testcase_25 AC 270 ms
110,208 KB
testcase_26 AC 457 ms
141,724 KB
testcase_27 AC 313 ms
117,272 KB
testcase_28 AC 359 ms
125,056 KB
testcase_29 AC 792 ms
203,032 KB
testcase_30 AC 748 ms
197,596 KB
testcase_31 AC 750 ms
199,664 KB
testcase_32 AC 789 ms
202,776 KB
testcase_33 AC 812 ms
203,744 KB
testcase_34 AC 751 ms
197,156 KB
testcase_35 AC 776 ms
200,148 KB
testcase_36 AC 740 ms
197,616 KB
testcase_37 AC 743 ms
199,824 KB
testcase_38 AC 777 ms
203,700 KB
testcase_39 AC 700 ms
204,600 KB
testcase_40 AC 774 ms
203,964 KB
testcase_41 AC 799 ms
204,260 KB
testcase_42 AC 815 ms
204,252 KB
testcase_43 AC 756 ms
205,224 KB
testcase_44 AC 794 ms
203,820 KB
testcase_45 AC 800 ms
204,680 KB
testcase_46 AC 796 ms
204,284 KB
testcase_47 AC 45 ms
54,912 KB
testcase_48 AC 45 ms
55,296 KB
testcase_49 AC 44 ms
54,784 KB
testcase_50 AC 44 ms
55,168 KB
testcase_51 AC 44 ms
55,168 KB
testcase_52 AC 45 ms
55,168 KB
testcase_53 AC 45 ms
55,168 KB
testcase_54 AC 45 ms
54,656 KB
testcase_55 AC 44 ms
55,424 KB
testcase_56 AC 42 ms
54,144 KB
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
x = list(map(int,input().split()))
c = []
t = []
for i in range(n):
    l = list(map(int,input().split()))
    c.append(l[:-1])
    t.append(l[-1])

jj = set()
kaburi = set()
for i in range(n):
    l = []
    for j in range(m):
        l.append(c[i][j]*t[i])
    l = tuple(l)
    if l in jj:
        kaburi.add(i)
    jj.add(l)


ans = 0
for i in range(n):
    l = []
    for j in range(m):
        l.append(c[i][j]*t[i])
    l = tuple(l)
    if t[i] == 100:
        ans |= l == tuple(x)
        continue
    e = []
    ok = 1
    for j in range(m):
        a = 10000*x[j] - 100*t[i]*c[i][j]
        b = 100-t[i]
        ok &= a % b == 0
        e.append(a//b)
    if i not in kaburi:
        ok &= tuple(e) != l
    if ok:
        ans |= (tuple(e) in jj)

print('Yes') if ans else print('No')
0