結果

問題 No.2684 折々の色
ユーザー 👑 rin204rin204
提出日時 2024-02-29 22:09:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 862 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 249,484 KB
最終ジャッジ日時 2024-09-29 18:31:45
合計ジャッジ時間 28,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,420 KB
testcase_01 AC 32 ms
54,272 KB
testcase_02 AC 36 ms
55,068 KB
testcase_03 AC 33 ms
53,864 KB
testcase_04 AC 38 ms
60,448 KB
testcase_05 AC 32 ms
52,948 KB
testcase_06 AC 34 ms
53,548 KB
testcase_07 AC 34 ms
53,004 KB
testcase_08 AC 37 ms
58,900 KB
testcase_09 AC 33 ms
54,256 KB
testcase_10 AC 37 ms
53,316 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 154 ms
92,556 KB
testcase_17 WA -
testcase_18 AC 511 ms
187,640 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 198 ms
99,828 KB
testcase_22 AC 582 ms
187,364 KB
testcase_23 AC 447 ms
146,012 KB
testcase_24 AC 265 ms
108,572 KB
testcase_25 AC 328 ms
124,964 KB
testcase_26 AC 543 ms
171,012 KB
testcase_27 AC 373 ms
129,872 KB
testcase_28 AC 421 ms
145,728 KB
testcase_29 AC 877 ms
247,540 KB
testcase_30 WA -
testcase_31 AC 735 ms
243,872 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 941 ms
249,072 KB
testcase_39 AC 937 ms
249,080 KB
testcase_40 AC 958 ms
248,812 KB
testcase_41 AC 945 ms
248,936 KB
testcase_42 AC 950 ms
249,020 KB
testcase_43 AC 966 ms
249,148 KB
testcase_44 AC 976 ms
249,484 KB
testcase_45 AC 989 ms
248,744 KB
testcase_46 AC 969 ms
249,016 KB
testcase_47 AC 35 ms
53,376 KB
testcase_48 WA -
testcase_49 AC 34 ms
53,972 KB
testcase_50 AC 33 ms
54,600 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 34 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
assert 2 <= n <= 200000
assert 1 <= m <= 10
X = list(map(int, input().split()))
assert all(0 <= x < (1 << 16) for x in X)
C = []
T = []
for _ in range(n):
    C_ = list(map(int, input().split()))
    t = C_.pop()
    assert len(C_) == m
    assert 0 < t <= 100
    assert all(0 <= c < (1 << 16) for c in C_)

    T.append(t)
    C.append(C_)

inds = {}
for i in range(n):
    if T[i] == 100:
        if C[i] == X:
            print("Yes")
            exit()
    D = tuple(T[i] * c / 100 for c in C[i])
    inds.setdefault(D, []).append(i)

for i in range(n):
    if T[i] == 100:
        continue
    D = [0] * m
    ok = True
    for j in range(m):
        D[j] = (X[j] - T[i] / 100 * C[i][j]) / (1 - T[i] / 100)

    if ok:
        tup = tuple(D)
        if tup in inds:
            print("Yes")
            exit()

print("No")
0