結果

問題 No.2684 折々の色
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 17:26:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,314 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 210,084 KB
最終ジャッジ日時 2024-11-04 17:27:09
合計ジャッジ時間 35,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,744 KB
testcase_01 AC 37 ms
53,168 KB
testcase_02 AC 44 ms
61,216 KB
testcase_03 AC 43 ms
61,000 KB
testcase_04 AC 50 ms
64,240 KB
testcase_05 AC 42 ms
60,264 KB
testcase_06 AC 45 ms
61,132 KB
testcase_07 AC 43 ms
60,944 KB
testcase_08 AC 48 ms
63,660 KB
testcase_09 AC 45 ms
62,648 KB
testcase_10 AC 47 ms
62,524 KB
testcase_11 AC 680 ms
140,072 KB
testcase_12 AC 446 ms
120,884 KB
testcase_13 AC 524 ms
150,892 KB
testcase_14 AC 260 ms
112,040 KB
testcase_15 AC 561 ms
124,788 KB
testcase_16 AC 189 ms
90,216 KB
testcase_17 AC 404 ms
116,588 KB
testcase_18 AC 603 ms
150,812 KB
testcase_19 AC 544 ms
153,256 KB
testcase_20 AC 331 ms
124,540 KB
testcase_21 AC 302 ms
99,640 KB
testcase_22 AC 936 ms
158,000 KB
testcase_23 AC 609 ms
127,896 KB
testcase_24 AC 387 ms
104,036 KB
testcase_25 AC 530 ms
118,464 KB
testcase_26 AC 772 ms
146,732 KB
testcase_27 AC 570 ms
121,712 KB
testcase_28 AC 577 ms
127,688 KB
testcase_29 AC 1,037 ms
206,524 KB
testcase_30 AC 968 ms
202,712 KB
testcase_31 AC 681 ms
201,696 KB
testcase_32 AC 1,236 ms
206,164 KB
testcase_33 AC 805 ms
206,528 KB
testcase_34 AC 1,087 ms
202,604 KB
testcase_35 AC 1,006 ms
203,172 KB
testcase_36 AC 651 ms
202,720 KB
testcase_37 AC 809 ms
202,068 KB
testcase_38 AC 1,291 ms
209,736 KB
testcase_39 AC 1,309 ms
209,804 KB
testcase_40 AC 1,251 ms
209,888 KB
testcase_41 AC 1,255 ms
210,084 KB
testcase_42 AC 1,255 ms
210,084 KB
testcase_43 AC 1,283 ms
209,520 KB
testcase_44 AC 1,292 ms
209,724 KB
testcase_45 AC 1,314 ms
209,536 KB
testcase_46 AC 1,288 ms
209,896 KB
testcase_47 AC 45 ms
60,824 KB
testcase_48 AC 42 ms
60,512 KB
testcase_49 AC 38 ms
53,932 KB
testcase_50 AC 41 ms
60,804 KB
testcase_51 AC 41 ms
60,556 KB
testcase_52 AC 43 ms
61,596 KB
testcase_53 AC 43 ms
60,500 KB
testcase_54 AC 38 ms
52,752 KB
testcase_55 AC 43 ms
61,204 KB
testcase_56 AC 36 ms
52,468 KB
testcase_57 AC 36 ms
52,388 KB
権限があれば一括ダウンロードができます

ソースコード

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