結果

問題 No.2684 折々の色
ユーザー detteiuudetteiuu
提出日時 2024-11-24 02:36:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 980 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 269,196 KB
最終ジャッジ日時 2024-11-24 02:37:09
合計ジャッジ時間 30,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
58,880 KB
testcase_03 AC 36 ms
52,628 KB
testcase_04 AC 44 ms
58,752 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 39 ms
58,368 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 42 ms
57,728 KB
testcase_09 AC 37 ms
52,736 KB
testcase_10 AC 37 ms
52,992 KB
testcase_11 AC 486 ms
164,444 KB
testcase_12 AC 324 ms
140,220 KB
testcase_13 AC 474 ms
182,848 KB
testcase_14 AC 262 ms
127,348 KB
testcase_15 AC 405 ms
143,408 KB
testcase_16 AC 146 ms
94,080 KB
testcase_17 AC 310 ms
133,540 KB
testcase_18 AC 493 ms
181,500 KB
testcase_19 AC 487 ms
180,760 KB
testcase_20 AC 331 ms
149,716 KB
testcase_21 AC 196 ms
104,908 KB
testcase_22 AC 641 ms
187,432 KB
testcase_23 AC 420 ms
156,020 KB
testcase_24 AC 285 ms
113,884 KB
testcase_25 AC 339 ms
130,052 KB
testcase_26 AC 538 ms
177,804 KB
testcase_27 AC 417 ms
138,028 KB
testcase_28 AC 418 ms
154,744 KB
testcase_29 AC 929 ms
262,204 KB
testcase_30 AC 877 ms
259,036 KB
testcase_31 AC 674 ms
258,360 KB
testcase_32 AC 873 ms
262,020 KB
testcase_33 AC 769 ms
263,524 KB
testcase_34 AC 763 ms
258,348 KB
testcase_35 AC 785 ms
257,644 KB
testcase_36 AC 693 ms
258,816 KB
testcase_37 AC 715 ms
258,292 KB
testcase_38 AC 965 ms
268,916 KB
testcase_39 AC 942 ms
269,044 KB
testcase_40 AC 968 ms
268,744 KB
testcase_41 AC 961 ms
269,156 KB
testcase_42 AC 969 ms
269,152 KB
testcase_43 AC 937 ms
268,916 KB
testcase_44 AC 975 ms
269,040 KB
testcase_45 AC 980 ms
269,172 KB
testcase_46 AC 970 ms
269,196 KB
testcase_47 AC 39 ms
52,992 KB
testcase_48 AC 41 ms
52,608 KB
testcase_49 AC 36 ms
52,736 KB
testcase_50 AC 40 ms
53,248 KB
testcase_51 AC 41 ms
52,736 KB
testcase_52 AC 40 ms
52,736 KB
testcase_53 AC 38 ms
52,736 KB
testcase_54 AC 38 ms
52,864 KB
testcase_55 AC 38 ms
52,608 KB
testcase_56 AC 37 ms
52,224 KB
testcase_57 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
X = list(map(int, input().split()))
C = [list(map(int, input().split())) for _ in range(N)]

for i in range(M):
    X[i] *= 10**4

C1 = [[-1]*M for _ in range(N)]
C2 = [[-1]*M for _ in range(N)]
D = dict()
T = []
for i in range(N):
    T.append(C[i].pop())
    for j in range(M):
        C1[i][j] = C[i][j]*T[i]*10**2
        C2[i][j] = C[i][j]*T[i]
    t = tuple(C2[i])
    if t in D:
        D[t] += 1
    else:
        D[t] = 1

for i in range(N):
    if T[i] == 100:
        if tuple(C1[i]) == tuple(X):
            print("Yes")
            break
        continue
    E = []
    for j in range(M):
        E.append((X[j]-C1[i][j])//(100-T[i]))
    tE = tuple(E)
    myT = tuple(C2[i])
    if tE == myT:
        if 2 <= D[tE]:
            print("Yes")
            break
    else:
        if tE in D:
            print("Yes")
            break
else:
    print("No")
0