結果

問題 No.2684 折々の色
ユーザー flygonflygon
提出日時 2024-03-20 22:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 201,928 KB
最終ジャッジ日時 2024-09-30 09:07:10
合計ジャッジ時間 21,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,664 KB
testcase_01 AC 38 ms
56,412 KB
testcase_02 AC 43 ms
57,052 KB
testcase_03 AC 39 ms
55,544 KB
testcase_04 AC 41 ms
57,120 KB
testcase_05 AC 38 ms
56,296 KB
testcase_06 AC 40 ms
56,152 KB
testcase_07 AC 39 ms
55,676 KB
testcase_08 AC 39 ms
55,700 KB
testcase_09 AC 42 ms
55,932 KB
testcase_10 AC 38 ms
56,860 KB
testcase_11 AC 360 ms
133,808 KB
testcase_12 AC 328 ms
116,608 KB
testcase_13 AC 402 ms
145,848 KB
testcase_14 AC 242 ms
110,004 KB
testcase_15 AC 300 ms
117,432 KB
testcase_16 AC 141 ms
86,644 KB
testcase_17 AC 260 ms
112,872 KB
testcase_18 AC 367 ms
147,552 KB
testcase_19 AC 441 ms
145,496 KB
testcase_20 AC 356 ms
121,388 KB
testcase_21 AC 138 ms
92,416 KB
testcase_22 AC 391 ms
147,736 KB
testcase_23 AC 326 ms
126,196 KB
testcase_24 AC 176 ms
101,248 KB
testcase_25 AC 246 ms
110,592 KB
testcase_26 AC 375 ms
140,904 KB
testcase_27 AC 242 ms
115,900 KB
testcase_28 AC 285 ms
124,288 KB
testcase_29 AC 651 ms
201,376 KB
testcase_30 AC 675 ms
194,832 KB
testcase_31 AC 628 ms
194,852 KB
testcase_32 AC 664 ms
201,528 KB
testcase_33 AC 667 ms
201,712 KB
testcase_34 AC 669 ms
194,480 KB
testcase_35 AC 640 ms
194,428 KB
testcase_36 AC 585 ms
194,948 KB
testcase_37 AC 592 ms
195,140 KB
testcase_38 AC 621 ms
201,552 KB
testcase_39 AC 617 ms
201,552 KB
testcase_40 AC 653 ms
201,632 KB
testcase_41 AC 652 ms
201,556 KB
testcase_42 AC 625 ms
201,544 KB
testcase_43 AC 658 ms
201,652 KB
testcase_44 AC 656 ms
201,548 KB
testcase_45 AC 623 ms
201,928 KB
testcase_46 AC 607 ms
201,432 KB
testcase_47 AC 40 ms
55,424 KB
testcase_48 AC 38 ms
55,168 KB
testcase_49 AC 38 ms
55,424 KB
testcase_50 AC 38 ms
55,552 KB
testcase_51 AC 40 ms
55,552 KB
testcase_52 AC 39 ms
55,900 KB
testcase_53 AC 41 ms
56,148 KB
testcase_54 AC 41 ms
54,780 KB
testcase_55 AC 41 ms
55,724 KB
testcase_56 AC 39 ms
55,820 KB
testcase_57 AC 40 ms
55,108 KB
権限があれば一括ダウンロードができます

ソースコード

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()
for i in range(n):
    l = []
    for j in range(m):
        l.append(c[i][j]*t[i])
    l = tuple(l)
    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 |= tuple(c[i]) == 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)
    ok &= tuple(e) != l
    if ok:
        ans |= (tuple(e) in jj)

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