結果

問題 No.2684 折々の色
ユーザー AyunaAyuna
提出日時 2023-12-16 03:05:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 206,572 KB
最終ジャッジ日時 2024-09-29 18:30:07
合計ジャッジ時間 24,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 44 ms
58,368 KB
testcase_03 AC 40 ms
52,956 KB
testcase_04 AC 44 ms
58,624 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 43 ms
58,112 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 44 ms
57,728 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 40 ms
52,992 KB
testcase_11 AC 407 ms
131,056 KB
testcase_12 AC 305 ms
116,328 KB
testcase_13 AC 463 ms
143,072 KB
testcase_14 AC 256 ms
106,524 KB
testcase_15 AC 334 ms
118,756 KB
testcase_16 AC 150 ms
89,104 KB
testcase_17 AC 288 ms
111,564 KB
testcase_18 AC 445 ms
144,944 KB
testcase_19 AC 460 ms
141,160 KB
testcase_20 AC 328 ms
124,212 KB
testcase_21 AC 187 ms
93,712 KB
testcase_22 AC 468 ms
145,816 KB
testcase_23 AC 361 ms
128,284 KB
testcase_24 AC 223 ms
99,084 KB
testcase_25 AC 291 ms
109,148 KB
testcase_26 AC 443 ms
142,796 KB
testcase_27 AC 308 ms
113,940 KB
testcase_28 AC 354 ms
127,744 KB
testcase_29 AC 705 ms
201,844 KB
testcase_30 AC 685 ms
199,392 KB
testcase_31 AC 672 ms
198,840 KB
testcase_32 AC 718 ms
202,264 KB
testcase_33 AC 702 ms
206,120 KB
testcase_34 AC 696 ms
199,880 KB
testcase_35 AC 696 ms
200,020 KB
testcase_36 AC 673 ms
199,608 KB
testcase_37 AC 682 ms
200,604 KB
testcase_38 AC 734 ms
206,116 KB
testcase_39 AC 738 ms
206,120 KB
testcase_40 AC 740 ms
206,172 KB
testcase_41 AC 746 ms
206,352 KB
testcase_42 AC 729 ms
205,856 KB
testcase_43 AC 725 ms
205,948 KB
testcase_44 AC 736 ms
206,244 KB
testcase_45 AC 740 ms
205,948 KB
testcase_46 AC 741 ms
206,572 KB
testcase_47 AC 40 ms
52,352 KB
testcase_48 AC 41 ms
52,608 KB
testcase_49 AC 41 ms
52,480 KB
testcase_50 AC 41 ms
52,736 KB
testcase_51 AC 41 ms
52,352 KB
testcase_52 AC 42 ms
52,992 KB
testcase_53 AC 41 ms
52,736 KB
testcase_54 AC 42 ms
52,736 KB
testcase_55 AC 40 ms
52,480 KB
testcase_56 AC 39 ms
52,480 KB
testcase_57 AC 39 ms
52,352 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