結果

問題 No.2684 折々の色
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 17:09:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 636 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 158,408 KB
最終ジャッジ日時 2024-11-04 17:09:46
合計ジャッジ時間 28,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,936 KB
testcase_01 AC 35 ms
53,220 KB
testcase_02 AC 54 ms
64,960 KB
testcase_03 AC 49 ms
62,712 KB
testcase_04 AC 66 ms
70,344 KB
testcase_05 AC 52 ms
60,800 KB
testcase_06 AC 55 ms
64,596 KB
testcase_07 AC 49 ms
61,636 KB
testcase_08 AC 57 ms
65,424 KB
testcase_09 AC 55 ms
63,740 KB
testcase_10 AC 55 ms
64,944 KB
testcase_11 TLE -
testcase_12 AC 1,423 ms
120,820 KB
testcase_13 AC 1,097 ms
150,928 KB
testcase_14 AC 448 ms
112,000 KB
testcase_15 AC 1,617 ms
124,872 KB
testcase_16 AC 330 ms
90,208 KB
testcase_17 AC 1,287 ms
116,856 KB
testcase_18 AC 1,172 ms
150,936 KB
testcase_19 AC 1,372 ms
152,764 KB
testcase_20 AC 879 ms
124,656 KB
testcase_21 AC 686 ms
99,300 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 978 ms
104,160 KB
testcase_25 AC 1,886 ms
118,596 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

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)]
    c2=tuple(c2)
    if c1!=c2:
      if c2 in d:
        if ts[d[c2]]==t2:
          print("Yes")
          exit()
print("No")
0