結果

問題 No.2684 折々の色
ユーザー とりゐとりゐ
提出日時 2024-03-20 21:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 157,540 KB
最終ジャッジ日時 2024-09-30 07:38:54
合計ジャッジ時間 18,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,124 KB
testcase_01 AC 35 ms
53,848 KB
testcase_02 AC 41 ms
56,008 KB
testcase_03 AC 39 ms
55,692 KB
testcase_04 AC 40 ms
56,004 KB
testcase_05 AC 37 ms
54,044 KB
testcase_06 AC 40 ms
55,472 KB
testcase_07 AC 38 ms
54,744 KB
testcase_08 AC 42 ms
55,092 KB
testcase_09 AC 38 ms
54,708 KB
testcase_10 AC 39 ms
54,656 KB
testcase_11 AC 285 ms
113,836 KB
testcase_12 AC 210 ms
99,684 KB
testcase_13 AC 322 ms
119,940 KB
testcase_14 AC 195 ms
97,072 KB
testcase_15 AC 233 ms
101,872 KB
testcase_16 AC 132 ms
82,048 KB
testcase_17 AC 204 ms
97,632 KB
testcase_18 AC 311 ms
116,752 KB
testcase_19 AC 336 ms
121,708 KB
testcase_20 AC 253 ms
107,352 KB
testcase_21 AC 149 ms
84,916 KB
testcase_22 AC 330 ms
116,952 KB
testcase_23 AC 259 ms
108,588 KB
testcase_24 AC 168 ms
89,164 KB
testcase_25 AC 207 ms
97,096 KB
testcase_26 AC 316 ms
118,476 KB
testcase_27 AC 232 ms
100,728 KB
testcase_28 AC 258 ms
108,340 KB
testcase_29 AC 492 ms
155,416 KB
testcase_30 AC 469 ms
150,924 KB
testcase_31 AC 498 ms
151,360 KB
testcase_32 AC 508 ms
156,432 KB
testcase_33 AC 520 ms
156,800 KB
testcase_34 AC 497 ms
150,680 KB
testcase_35 AC 473 ms
151,328 KB
testcase_36 AC 449 ms
150,788 KB
testcase_37 AC 468 ms
151,352 KB
testcase_38 AC 505 ms
157,100 KB
testcase_39 AC 511 ms
157,164 KB
testcase_40 AC 511 ms
157,040 KB
testcase_41 AC 510 ms
157,540 KB
testcase_42 AC 509 ms
157,428 KB
testcase_43 AC 539 ms
157,388 KB
testcase_44 AC 518 ms
156,548 KB
testcase_45 AC 515 ms
157,092 KB
testcase_46 AC 510 ms
156,976 KB
testcase_47 AC 38 ms
54,848 KB
testcase_48 AC 38 ms
54,896 KB
testcase_49 AC 38 ms
56,408 KB
testcase_50 AC 37 ms
55,004 KB
testcase_51 AC 38 ms
54,680 KB
testcase_52 AC 39 ms
54,748 KB
testcase_53 AC 38 ms
54,760 KB
testcase_54 AC 39 ms
55,664 KB
testcase_55 AC 40 ms
54,868 KB
testcase_56 AC 36 ms
54,932 KB
testcase_57 AC 36 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,m=map(int,input().split())
d=defaultdict(list)
X=list(map(int,input().split()))
C=[]
for i in range(n):
  CiT=list(map(int,input().split()))
  Ci=CiT[:-1]
  T=CiT[-1]
  if T==100:
    if Ci==X:
      print("Yes")
      exit()
  else:
    res=[]
    for j in range(m):
      if (10000*X[j]-100*T*Ci[j])%(100-T)==0:
        res.append((10000*X[j]-100*T*Ci[j])//(100-T))
    if len(res)==m:
      d[tuple(res)].append(i)
  
  D=[]
  for j in range(m):
    D.append(T*Ci[j])
  C.append(tuple(D))
  
for i in range(n):
  if C[i] in d:
    for idx in d[C[i]]:
      if idx!=i:
        print("Yes")
        exit()

print("No")
0