結果

問題 No.2684 折々の色
ユーザー hato336hato336
提出日時 2024-03-20 22:34:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,211 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 214,284 KB
最終ジャッジ日時 2024-09-30 08:39:25
合計ジャッジ時間 31,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
85,504 KB
testcase_01 AC 120 ms
85,376 KB
testcase_02 AC 132 ms
88,960 KB
testcase_03 WA -
testcase_04 AC 134 ms
89,088 KB
testcase_05 AC 117 ms
85,376 KB
testcase_06 AC 130 ms
89,088 KB
testcase_07 WA -
testcase_08 AC 134 ms
89,460 KB
testcase_09 WA -
testcase_10 AC 136 ms
88,960 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 574 ms
150,560 KB
testcase_14 AC 324 ms
119,648 KB
testcase_15 WA -
testcase_16 AC 239 ms
98,812 KB
testcase_17 WA -
testcase_18 AC 516 ms
143,744 KB
testcase_19 AC 529 ms
149,508 KB
testcase_20 AC 395 ms
134,048 KB
testcase_21 AC 277 ms
104,940 KB
testcase_22 AC 624 ms
146,588 KB
testcase_23 AC 492 ms
137,268 KB
testcase_24 AC 324 ms
110,720 KB
testcase_25 AC 411 ms
120,996 KB
testcase_26 AC 602 ms
153,600 KB
testcase_27 AC 442 ms
125,616 KB
testcase_28 AC 490 ms
136,400 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 707 ms
196,904 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 706 ms
197,704 KB
testcase_37 AC 753 ms
198,100 KB
testcase_38 AC 927 ms
213,508 KB
testcase_39 AC 966 ms
213,256 KB
testcase_40 AC 971 ms
213,644 KB
testcase_41 AC 944 ms
213,380 KB
testcase_42 AC 959 ms
213,472 KB
testcase_43 AC 947 ms
213,252 KB
testcase_44 AC 966 ms
213,512 KB
testcase_45 AC 949 ms
213,504 KB
testcase_46 AC 965 ms
214,284 KB
testcase_47 AC 131 ms
88,960 KB
testcase_48 AC 145 ms
88,960 KB
testcase_49 AC 154 ms
88,960 KB
testcase_50 AC 145 ms
89,088 KB
testcase_51 WA -
testcase_52 AC 148 ms
88,960 KB
testcase_53 AC 148 ms
89,088 KB
testcase_54 AC 152 ms
88,832 KB
testcase_55 AC 154 ms
88,832 KB
testcase_56 AC 138 ms
85,504 KB
testcase_57 AC 135 ms
85,504 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
    z = []
    for j in range(m):
        z.append(1 * c[i][-1] * c[i][j])
    s.discard(tuple(z))
    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'))
    s.add(tuple(z))
print('No')
0