結果

問題 No.2684 折々の色
ユーザー AyunaAyuna
提出日時 2023-12-15 23:34:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 849 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 217,096 KB
最終ジャッジ日時 2024-09-29 18:29:43
合計ジャッジ時間 61,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 1,238 ms
98,780 KB
testcase_12 AC 817 ms
69,728 KB
testcase_13 AC 1,256 ms
107,036 KB
testcase_14 AC 589 ms
62,660 KB
testcase_15 AC 879 ms
72,340 KB
testcase_16 AC 209 ms
23,964 KB
testcase_17 AC 686 ms
61,344 KB
testcase_18 AC 1,151 ms
101,280 KB
testcase_19 AC 1,297 ms
117,048 KB
testcase_20 AC 823 ms
92,344 KB
testcase_21 AC 332 ms
31,216 KB
testcase_22 AC 1,346 ms
102,428 KB
testcase_23 AC 1,012 ms
94,308 KB
testcase_24 AC 484 ms
41,604 KB
testcase_25 AC 718 ms
59,332 KB
testcase_26 AC 1,326 ms
118,896 KB
testcase_27 AC 809 ms
74,764 KB
testcase_28 AC 956 ms
93,928 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,919 ms
201,124 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,916 ms
199,348 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 27 ms
10,880 KB
testcase_48 AC 25 ms
10,880 KB
testcase_49 AC 24 ms
10,880 KB
testcase_50 AC 25 ms
10,752 KB
testcase_51 AC 24 ms
10,880 KB
testcase_52 AC 32 ms
10,752 KB
testcase_53 AC 25 ms
10,752 KB
testcase_54 AC 25 ms
10,880 KB
testcase_55 AC 25 ms
10,880 KB
testcase_56 AC 24 ms
10,880 KB
testcase_57 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
x = list(map(int, input().split()))
a = [list(map(int, input().split())) for _ in range(n)]
dic = dict()

for i in range(n):
    lis = []
    for j in range(m):
        lis.append(a[i][j] * a[i][-1])
    tup = tuple(lis)
    if tup in dic:
        dic[tup] = -1
    else:
        dic[tup] = i

for i in range(n):
    if a[i][-1] == 100:
        if a[i][:-1] == x:
            print("Yes")
            exit()
    else:
        flg = True
        predict = []
        for j in range(m):
            k = x[j] * 10000 - 100 * a[i][-1] * a[i][j]
            if k % (100 - a[i][-1]) != 0:
                flg = False
                break
            predict.append(k // (100 - a[i][-1]))
        tup = tuple(predict)
        if flg and tup in dic and dic[tup] != i:
            print("Yes")
            exit()
print("No")
0