結果

問題 No.2684 折々の色
ユーザー hato336hato336
提出日時 2024-03-20 22:31:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,092 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 203,620 KB
最終ジャッジ日時 2024-09-30 08:32:00
合計ジャッジ時間 26,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
85,852 KB
testcase_01 AC 115 ms
85,660 KB
testcase_02 AC 127 ms
89,036 KB
testcase_03 AC 130 ms
88,956 KB
testcase_04 AC 129 ms
88,976 KB
testcase_05 AC 117 ms
85,524 KB
testcase_06 AC 130 ms
89,152 KB
testcase_07 AC 116 ms
85,568 KB
testcase_08 AC 128 ms
88,976 KB
testcase_09 AC 127 ms
89,088 KB
testcase_10 AC 132 ms
89,324 KB
testcase_11 AC 429 ms
137,408 KB
testcase_12 AC 352 ms
123,772 KB
testcase_13 AC 448 ms
146,740 KB
testcase_14 AC 294 ms
119,520 KB
testcase_15 AC 363 ms
128,204 KB
testcase_16 AC 209 ms
98,036 KB
testcase_17 AC 331 ms
120,544 KB
testcase_18 AC 433 ms
143,680 KB
testcase_19 AC 437 ms
146,972 KB
testcase_20 AC 347 ms
132,524 KB
testcase_21 AC 237 ms
105,012 KB
testcase_22 AC 448 ms
143,852 KB
testcase_23 AC 401 ms
137,408 KB
testcase_24 AC 275 ms
110,844 KB
testcase_25 AC 325 ms
121,300 KB
testcase_26 AC 470 ms
150,052 KB
testcase_27 AC 338 ms
124,320 KB
testcase_28 AC 382 ms
136,588 KB
testcase_29 AC 680 ms
199,332 KB
testcase_30 AC 677 ms
196,480 KB
testcase_31 AC 640 ms
195,620 KB
testcase_32 AC 710 ms
201,488 KB
testcase_33 AC 701 ms
202,572 KB
testcase_34 AC 671 ms
196,680 KB
testcase_35 AC 674 ms
197,088 KB
testcase_36 AC 613 ms
197,000 KB
testcase_37 AC 627 ms
196,572 KB
testcase_38 AC 685 ms
203,404 KB
testcase_39 AC 703 ms
203,492 KB
testcase_40 AC 696 ms
203,620 KB
testcase_41 AC 686 ms
203,284 KB
testcase_42 AC 706 ms
203,160 KB
testcase_43 AC 708 ms
203,212 KB
testcase_44 AC 717 ms
203,192 KB
testcase_45 AC 687 ms
203,352 KB
testcase_46 AC 737 ms
203,564 KB
testcase_47 AC 130 ms
88,848 KB
testcase_48 AC 131 ms
89,072 KB
testcase_49 AC 133 ms
89,116 KB
testcase_50 AC 131 ms
88,840 KB
testcase_51 AC 129 ms
89,060 KB
testcase_52 AC 129 ms
89,032 KB
testcase_53 AC 129 ms
89,080 KB
testcase_54 AC 132 ms
89,240 KB
testcase_55 AC 130 ms
88,972 KB
testcase_56 WA -
testcase_57 AC 119 ms
85,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
n,m = map(int,input().split())
x = list(map(int,input().split()))
for i in range(m):
    x[i] *= 10000
c = [list(map(int,input().split())) for i in range(n)]
s = set()
for i in range(n):
    z = []
    for j in range(m):
        z.append(1 * c[i][-1] * c[i][j])
    s.add(tuple(z))

for i in range(n):
    if 100 - c[i][-1] == 0:
        cnt = 0
        for j in range(m):
            if x[j] == 100 * c[i][j] * c[i][-1]:
                cnt += 1
            else:
                break
        if cnt == m:
            print('Yes')
            exit()
        continue
    y = []
    for j in range(m):
        y.append(x[j] - 100*c[i][-1]*c[i][j])
    check = 1
    for j in range(m):
        if y[j] % (100 - c[i][-1]) != 0:
            check = 0
            break
        else:
            y[j] //= (100 - c[i][-1])
    if check == 0:
        continue
    #print(i,y,s)
    if tuple(y) in s:
        exit(print('Yes'))
print('No')
0