結果

問題 No.2684 折々の色
ユーザー katonyonkokatonyonko
提出日時 2024-03-20 23:52:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,166 ms / 2,000 ms
コード長 2,015 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 278,684 KB
最終ジャッジ日時 2024-09-30 09:43:32
合計ジャッジ時間 32,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,912 KB
testcase_01 AC 48 ms
54,400 KB
testcase_02 AC 57 ms
61,568 KB
testcase_03 AC 53 ms
55,552 KB
testcase_04 AC 58 ms
61,824 KB
testcase_05 AC 51 ms
55,168 KB
testcase_06 AC 55 ms
56,064 KB
testcase_07 AC 54 ms
55,168 KB
testcase_08 AC 59 ms
61,312 KB
testcase_09 AC 55 ms
55,552 KB
testcase_10 AC 54 ms
55,808 KB
testcase_11 AC 592 ms
159,828 KB
testcase_12 AC 499 ms
126,664 KB
testcase_13 AC 666 ms
171,660 KB
testcase_14 AC 371 ms
121,960 KB
testcase_15 AC 442 ms
134,024 KB
testcase_16 AC 190 ms
88,320 KB
testcase_17 AC 367 ms
119,352 KB
testcase_18 AC 578 ms
162,036 KB
testcase_19 AC 641 ms
168,500 KB
testcase_20 AC 456 ms
144,896 KB
testcase_21 AC 239 ms
98,708 KB
testcase_22 AC 719 ms
183,512 KB
testcase_23 AC 547 ms
152,492 KB
testcase_24 AC 333 ms
109,800 KB
testcase_25 AC 426 ms
126,376 KB
testcase_26 AC 682 ms
180,004 KB
testcase_27 AC 416 ms
134,492 KB
testcase_28 AC 489 ms
153,232 KB
testcase_29 AC 876 ms
240,792 KB
testcase_30 AC 832 ms
227,440 KB
testcase_31 AC 1,072 ms
255,840 KB
testcase_32 AC 1,166 ms
265,272 KB
testcase_33 AC 765 ms
218,572 KB
testcase_34 AC 901 ms
240,696 KB
testcase_35 AC 860 ms
237,568 KB
testcase_36 AC 909 ms
247,412 KB
testcase_37 AC 858 ms
236,084 KB
testcase_38 AC 1,097 ms
278,684 KB
testcase_39 AC 1,138 ms
277,008 KB
testcase_40 AC 1,043 ms
276,724 KB
testcase_41 AC 1,039 ms
276,172 KB
testcase_42 AC 1,049 ms
276,100 KB
testcase_43 AC 1,154 ms
275,232 KB
testcase_44 AC 1,070 ms
276,784 KB
testcase_45 AC 1,050 ms
277,188 KB
testcase_46 AC 1,038 ms
277,040 KB
testcase_47 AC 44 ms
56,064 KB
testcase_48 AC 44 ms
55,936 KB
testcase_49 AC 45 ms
55,680 KB
testcase_50 AC 44 ms
55,808 KB
testcase_51 AC 43 ms
55,552 KB
testcase_52 AC 44 ms
56,192 KB
testcase_53 AC 43 ms
55,680 KB
testcase_54 AC 45 ms
55,808 KB
testcase_55 AC 44 ms
55,936 KB
testcase_56 AC 42 ms
54,912 KB
testcase_57 AC 42 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
from collections import defaultdict, deque, Counter
from itertools import permutations, combinations, accumulate
from heapq import heappush, heappop
from bisect import bisect_right, bisect_left
from math import gcd
import math

_INPUT = """\
6
3 3
100 120 140
80 100 160 75
320 360 160 50
0 5 10 30
2 4
0 0 0 0
0 10 20 30 40
50 60 70 80 90
"""

def solve(test):
  N,M=map(int,input().split())
  X=list(map(int,input().split()))
  C=[list(map(int,input().split())) for _ in range(N)]
  s=set()
  ans='No'
  for i in range(N):
    tmp=[]
    if C[i][-1]==100:
      if C[i][:M]==X:
        ans='Yes'
        break
    else:
      for j in range(M):
        if (10000*X[j]-100*C[i][-1]*C[i][j])%(100-C[i][-1])==0:
          tmp.append((10000*X[j]-100*C[i][-1]*C[i][j])//(100-C[i][-1]))
      if tuple(tmp) in s:
        ans='Yes'
        break
    s.add(tuple([C[i][-1]*C[i][j] for j in range(M)]))
  s=set()
  for i in reversed(range(N)):
    tmp=[]
    if C[i][-1]!=100:
      for j in range(M):
        if (10000*X[j]-100*C[i][-1]*C[i][j])%(100-C[i][-1])==0:
          tmp.append((10000*X[j]-100*C[i][-1]*C[i][j])//(100-C[i][-1]))
      if tuple(tmp) in s:
        ans='Yes'
        break
    s.add(tuple([C[i][-1]*C[i][j] for j in range(M)]))
  print(ans)

def random_input():
  from random import randint,shuffle
  N=randint(1,10)
  M=randint(1,N)
  A=list(range(1,M+1))+[randint(1,M) for _ in range(N-M)]
  shuffle(A)
  return (" ".join(map(str, [N,M]))+"\n"+" ".join(map(str, A))+"\n")*3

def simple_solve():
  return []

def main(test):
  if test==0:
    solve(0)
  elif test==1:
    sys.stdin = io.StringIO(_INPUT)
    case_no=int(input())
    for _ in range(case_no):
      solve(0)
  else:
    for i in range(1000):
      sys.stdin = io.StringIO(random_input())
      x=solve(1)
      y=simple_solve()
      if x!=y:
        print(i,x,y)
        print(*[line for line in sys.stdin],sep='')
        break

#0:提出用、1:与えられたテスト用、2:ストレステスト用
main(0)
0