結果

問題 No.2684 折々の色
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 17:06:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 563 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 182,584 KB
最終ジャッジ日時 2024-11-04 17:06:38
合計ジャッジ時間 23,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,592 KB
testcase_01 AC 40 ms
53,488 KB
testcase_02 AC 51 ms
63,744 KB
testcase_03 AC 51 ms
61,616 KB
testcase_04 RE -
testcase_05 AC 46 ms
61,684 KB
testcase_06 AC 54 ms
66,128 KB
testcase_07 AC 46 ms
61,276 KB
testcase_08 RE -
testcase_09 AC 50 ms
63,996 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 39 ms
53,632 KB
testcase_50 AC 44 ms
60,364 KB
testcase_51 AC 45 ms
61,988 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 37 ms
53,040 KB
testcase_55 AC 45 ms
61,924 KB
testcase_56 AC 38 ms
52,340 KB
testcase_57 RE -
権限があれば一括ダウンロードができます

ソースコード

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=tuple(q[:m])
  t=q[m]
  cs+=[c]
  ts+=[t]
d={c:i for i,c in enumerate(cs)}
for i in range(n):
  c1=cs[i]
  t1=ts[i]
  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