結果

問題 No.2684 折々の色
ユーザー hato336hato336
提出日時 2024-03-20 22:44:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,552 ms / 2,000 ms
コード長 1,405 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 165,352 KB
最終ジャッジ日時 2024-09-30 08:52:28
合計ジャッジ時間 41,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
85,248 KB
testcase_01 AC 138 ms
85,504 KB
testcase_02 AC 154 ms
88,704 KB
testcase_03 AC 145 ms
88,832 KB
testcase_04 AC 152 ms
88,704 KB
testcase_05 AC 137 ms
85,376 KB
testcase_06 AC 145 ms
88,832 KB
testcase_07 AC 144 ms
88,832 KB
testcase_08 AC 139 ms
88,832 KB
testcase_09 AC 145 ms
88,832 KB
testcase_10 AC 145 ms
89,088 KB
testcase_11 AC 685 ms
119,444 KB
testcase_12 AC 455 ms
111,580 KB
testcase_13 AC 586 ms
126,904 KB
testcase_14 AC 413 ms
106,136 KB
testcase_15 AC 473 ms
117,948 KB
testcase_16 AC 249 ms
97,664 KB
testcase_17 AC 441 ms
110,336 KB
testcase_18 AC 476 ms
142,848 KB
testcase_19 AC 680 ms
125,344 KB
testcase_20 AC 530 ms
115,008 KB
testcase_21 AC 284 ms
103,680 KB
testcase_22 AC 539 ms
131,440 KB
testcase_23 AC 663 ms
119,332 KB
testcase_24 AC 314 ms
107,648 KB
testcase_25 AC 462 ms
109,720 KB
testcase_26 AC 840 ms
128,884 KB
testcase_27 AC 564 ms
110,744 KB
testcase_28 AC 694 ms
119,936 KB
testcase_29 AC 1,268 ms
161,508 KB
testcase_30 AC 1,162 ms
161,748 KB
testcase_31 AC 974 ms
157,276 KB
testcase_32 AC 1,465 ms
162,440 KB
testcase_33 AC 1,176 ms
159,440 KB
testcase_34 AC 1,246 ms
161,748 KB
testcase_35 AC 1,246 ms
162,276 KB
testcase_36 AC 992 ms
156,796 KB
testcase_37 AC 1,104 ms
157,392 KB
testcase_38 AC 1,552 ms
165,092 KB
testcase_39 AC 1,535 ms
165,088 KB
testcase_40 AC 1,542 ms
165,352 KB
testcase_41 AC 1,542 ms
165,100 KB
testcase_42 AC 1,543 ms
165,348 KB
testcase_43 AC 1,541 ms
165,096 KB
testcase_44 AC 1,540 ms
165,108 KB
testcase_45 AC 1,539 ms
164,972 KB
testcase_46 AC 1,549 ms
165,348 KB
testcase_47 AC 157 ms
89,088 KB
testcase_48 AC 156 ms
88,832 KB
testcase_49 AC 157 ms
88,704 KB
testcase_50 AC 158 ms
88,704 KB
testcase_51 AC 157 ms
88,832 KB
testcase_52 AC 159 ms
88,832 KB
testcase_53 AC 166 ms
88,960 KB
testcase_54 AC 156 ms
88,832 KB
testcase_55 AC 156 ms
88,832 KB
testcase_56 AC 144 ms
85,632 KB
testcase_57 AC 144 ms
85,376 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 = 98765
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:
        s[z] += 1
        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