結果

問題 No.2684 折々の色
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 17:22:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 210,080 KB
最終ジャッジ日時 2024-11-04 17:23:27
合計ジャッジ時間 35,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,748 KB
testcase_01 AC 36 ms
52,268 KB
testcase_02 AC 44 ms
60,828 KB
testcase_03 AC 44 ms
61,132 KB
testcase_04 AC 50 ms
64,240 KB
testcase_05 AC 42 ms
60,692 KB
testcase_06 AC 45 ms
61,272 KB
testcase_07 AC 44 ms
61,596 KB
testcase_08 AC 48 ms
63,348 KB
testcase_09 AC 44 ms
61,396 KB
testcase_10 AC 46 ms
61,860 KB
testcase_11 AC 721 ms
139,736 KB
testcase_12 AC 453 ms
120,812 KB
testcase_13 AC 542 ms
150,596 KB
testcase_14 AC 275 ms
111,824 KB
testcase_15 AC 561 ms
124,540 KB
testcase_16 AC 190 ms
90,204 KB
testcase_17 AC 434 ms
116,836 KB
testcase_18 AC 604 ms
150,968 KB
testcase_19 AC 598 ms
152,888 KB
testcase_20 AC 342 ms
124,552 KB
testcase_21 AC 311 ms
99,504 KB
testcase_22 AC 1,006 ms
157,784 KB
testcase_23 AC 620 ms
128,032 KB
testcase_24 AC 392 ms
104,040 KB
testcase_25 AC 491 ms
118,616 KB
testcase_26 AC 797 ms
146,872 KB
testcase_27 AC 549 ms
121,464 KB
testcase_28 AC 616 ms
127,680 KB
testcase_29 AC 986 ms
206,104 KB
testcase_30 AC 947 ms
202,940 KB
testcase_31 AC 687 ms
201,540 KB
testcase_32 AC 1,276 ms
206,332 KB
testcase_33 AC 814 ms
206,252 KB
testcase_34 AC 1,066 ms
202,616 KB
testcase_35 AC 1,055 ms
202,876 KB
testcase_36 AC 730 ms
202,584 KB
testcase_37 AC 813 ms
202,000 KB
testcase_38 AC 1,304 ms
209,996 KB
testcase_39 AC 1,290 ms
209,884 KB
testcase_40 AC 1,274 ms
209,960 KB
testcase_41 AC 1,290 ms
209,804 KB
testcase_42 AC 1,273 ms
209,964 KB
testcase_43 AC 1,280 ms
210,080 KB
testcase_44 AC 1,314 ms
209,900 KB
testcase_45 AC 1,295 ms
209,584 KB
testcase_46 AC 1,276 ms
209,740 KB
testcase_47 AC 44 ms
61,076 KB
testcase_48 AC 44 ms
60,620 KB
testcase_49 AC 40 ms
54,716 KB
testcase_50 AC 45 ms
61,340 KB
testcase_51 AC 44 ms
61,180 KB
testcase_52 AC 44 ms
61,164 KB
testcase_53 AC 44 ms
61,856 KB
testcase_54 AC 38 ms
53,752 KB
testcase_55 AC 45 ms
60,816 KB
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
x=list(map(int,input().split()))
for i in range(m):
  x[i]*=10000
cs=[]
ts=[]
for i in range(n):
  q=list(map(int,input().split()))
  c=q[:m]
  t=q[m]
  cs+=[c]
  ts+=[t]
d={tuple(c):i for i,c in enumerate(cs)}
for i in range(n):
  c1=cs[i]
  t1=ts[i]
  if t1==100:
    if c1==x:
      print("Yes")
      exit()
    continue
  for t2 in range(1,101):
    c2=[]
    for j in range(m):
      if (x[j]-100*t1*c1[j])%((100-t1)*t2)==0:
        c2+=[(x[j]-100*t1*c1[j])//((100-t1)*t2)]
      else:
        break
    else:
      c2=tuple(c2)
      if c1!=c2:
        if c2 in d:
          if ts[d[c2]]==t2:
            print("Yes")
            exit()
print("No")
0