結果

問題 No.2684 折々の色
ユーザー とりゐとりゐ
提出日時 2024-03-20 21:48:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 157,552 KB
最終ジャッジ日時 2024-09-30 07:36:47
合計ジャッジ時間 19,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,064 KB
testcase_01 AC 40 ms
54,092 KB
testcase_02 AC 43 ms
55,836 KB
testcase_03 AC 42 ms
54,592 KB
testcase_04 AC 43 ms
56,716 KB
testcase_05 AC 40 ms
53,928 KB
testcase_06 AC 44 ms
56,248 KB
testcase_07 AC 42 ms
54,112 KB
testcase_08 AC 43 ms
55,168 KB
testcase_09 AC 42 ms
54,312 KB
testcase_10 AC 41 ms
55,712 KB
testcase_11 AC 305 ms
113,832 KB
testcase_12 AC 213 ms
99,556 KB
testcase_13 AC 331 ms
119,560 KB
testcase_14 AC 212 ms
97,200 KB
testcase_15 AC 258 ms
102,548 KB
testcase_16 AC 136 ms
82,240 KB
testcase_17 AC 224 ms
97,504 KB
testcase_18 AC 350 ms
116,368 KB
testcase_19 AC 346 ms
121,828 KB
testcase_20 AC 266 ms
107,592 KB
testcase_21 AC 153 ms
84,764 KB
testcase_22 AC 339 ms
117,348 KB
testcase_23 AC 272 ms
108,120 KB
testcase_24 AC 176 ms
89,212 KB
testcase_25 AC 217 ms
97,224 KB
testcase_26 AC 335 ms
119,016 KB
testcase_27 AC 244 ms
100,868 KB
testcase_28 AC 265 ms
108,076 KB
testcase_29 AC 514 ms
155,924 KB
testcase_30 AC 478 ms
150,768 KB
testcase_31 AC 494 ms
151,232 KB
testcase_32 AC 535 ms
156,164 KB
testcase_33 AC 532 ms
156,852 KB
testcase_34 AC 500 ms
150,536 KB
testcase_35 AC 529 ms
151,324 KB
testcase_36 AC 504 ms
151,084 KB
testcase_37 AC 520 ms
151,336 KB
testcase_38 AC 546 ms
156,720 KB
testcase_39 AC 548 ms
157,140 KB
testcase_40 AC 550 ms
157,396 KB
testcase_41 AC 556 ms
157,552 KB
testcase_42 AC 552 ms
157,100 KB
testcase_43 AC 569 ms
157,080 KB
testcase_44 AC 560 ms
157,192 KB
testcase_45 AC 553 ms
157,152 KB
testcase_46 AC 549 ms
157,152 KB
testcase_47 AC 43 ms
55,252 KB
testcase_48 AC 41 ms
55,112 KB
testcase_49 AC 43 ms
56,152 KB
testcase_50 AC 43 ms
54,700 KB
testcase_51 AC 42 ms
55,116 KB
testcase_52 AC 41 ms
55,116 KB
testcase_53 AC 43 ms
54,900 KB
testcase_54 AC 43 ms
55,652 KB
testcase_55 AC 42 ms
55,656 KB
testcase_56 WA -
testcase_57 AC 42 ms
54,984 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(j)
  
  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