結果

問題 No.2684 折々の色
ユーザー hato336hato336
提出日時 2024-03-20 22:40:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,385 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 157,704 KB
最終ジャッジ日時 2024-09-30 08:46:54
合計ジャッジ時間 30,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
85,792 KB
testcase_01 AC 117 ms
85,908 KB
testcase_02 AC 138 ms
89,312 KB
testcase_03 WA -
testcase_04 AC 121 ms
89,212 KB
testcase_05 AC 110 ms
85,580 KB
testcase_06 AC 120 ms
89,316 KB
testcase_07 WA -
testcase_08 AC 118 ms
89,292 KB
testcase_09 WA -
testcase_10 AC 119 ms
89,224 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 435 ms
138,044 KB
testcase_14 AC 321 ms
107,836 KB
testcase_15 WA -
testcase_16 AC 215 ms
98,072 KB
testcase_17 WA -
testcase_18 AC 428 ms
143,100 KB
testcase_19 AC 449 ms
132,368 KB
testcase_20 AC 381 ms
113,916 KB
testcase_21 AC 233 ms
104,028 KB
testcase_22 AC 449 ms
131,924 KB
testcase_23 AC 455 ms
118,176 KB
testcase_24 AC 259 ms
108,132 KB
testcase_25 AC 334 ms
115,188 KB
testcase_26 AC 549 ms
126,640 KB
testcase_27 AC 363 ms
118,468 KB
testcase_28 AC 481 ms
119,496 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 646 ms
148,824 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 667 ms
148,924 KB
testcase_37 AC 716 ms
149,432 KB
testcase_38 AC 989 ms
157,432 KB
testcase_39 AC 987 ms
157,112 KB
testcase_40 AC 1,016 ms
156,940 KB
testcase_41 AC 971 ms
156,960 KB
testcase_42 AC 992 ms
157,028 KB
testcase_43 AC 1,010 ms
157,352 KB
testcase_44 AC 1,027 ms
157,092 KB
testcase_45 AC 986 ms
157,228 KB
testcase_46 AC 981 ms
156,968 KB
testcase_47 AC 123 ms
89,380 KB
testcase_48 AC 123 ms
89,256 KB
testcase_49 AC 120 ms
88,968 KB
testcase_50 AC 121 ms
89,392 KB
testcase_51 WA -
testcase_52 AC 121 ms
89,308 KB
testcase_53 AC 121 ms
89,380 KB
testcase_54 AC 118 ms
89,328 KB
testcase_55 AC 120 ms
89,312 KB
testcase_56 AC 109 ms
85,496 KB
testcase_57 AC 118 ms
85,564 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())
mod = 2**61-1
base = 101
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 = collections.defaultdict(int)
for i in range(n):
    z = 0
    for j in range(m):
        z += (1 * c[i][-1] * c[i][j]) * (pow(base,j,mod))
        z %= mod
    s[z] += 1

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 = 0
    for j in range(m):
        z += (1 * c[i][-1] * c[i][j]) * (pow(base,j,mod))
        z %= mod
    s[z] -= 1
    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
    v = 0
    for j in range(m):
        v += y[j] * pow(base,j,mod)
        v %= mod
    #print(i,y,s)
    if s[v] >= 1:
        exit(print('Yes'))
    s[z] += 1
print('No')
0