結果

問題 No.2684 折々の色
ユーザー tomeruntomerun
提出日時 2024-03-20 21:46:32
言語 Crystal
(1.11.2)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 13,814 ms
コンパイル使用メモリ 295,736 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-30 07:34:56
合計ジャッジ時間 31,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 341 ms
50,304 KB
testcase_12 AC 156 ms
34,372 KB
testcase_13 AC 288 ms
54,016 KB
testcase_14 AC 142 ms
27,352 KB
testcase_15 AC 179 ms
36,588 KB
testcase_16 AC 38 ms
13,440 KB
testcase_17 AC 144 ms
30,720 KB
testcase_18 AC 269 ms
54,784 KB
testcase_19 AC 305 ms
52,224 KB
testcase_20 AC 186 ms
37,296 KB
testcase_21 AC 56 ms
17,052 KB
testcase_22 AC 303 ms
56,704 KB
testcase_23 AC 201 ms
39,040 KB
testcase_24 AC 108 ms
24,960 KB
testcase_25 AC 133 ms
32,772 KB
testcase_26 AC 294 ms
51,712 KB
testcase_27 AC 180 ms
33,116 KB
testcase_28 AC 203 ms
38,912 KB
testcase_29 AC 496 ms
76,800 KB
testcase_30 AC 513 ms
77,184 KB
testcase_31 AC 494 ms
74,880 KB
testcase_32 AC 545 ms
77,056 KB
testcase_33 AC 544 ms
76,544 KB
testcase_34 AC 532 ms
77,184 KB
testcase_35 AC 538 ms
77,312 KB
testcase_36 AC 512 ms
77,184 KB
testcase_37 AC 565 ms
74,880 KB
testcase_38 AC 571 ms
76,672 KB
testcase_39 AC 573 ms
76,672 KB
testcase_40 AC 585 ms
76,672 KB
testcase_41 AC 577 ms
76,672 KB
testcase_42 AC 573 ms
76,672 KB
testcase_43 AC 587 ms
76,672 KB
testcase_44 AC 581 ms
76,672 KB
testcase_45 AC 585 ms
76,544 KB
testcase_46 AC 577 ms
76,672 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 3 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = read_line.split.map(&.to_i)
x = read_line.split.map(&.to_i)
t = [] of Int32
cards = Hash(Array(Int32), Array(Int32)).new { |h, k| h[k] = [] of Int32 }
cs = Array.new(n) do |i|
  e = read_line.split.map(&.to_i)
  t << e[-1]
  cards[e[..-2].map { |v| v * t[-1] }] << i
  e[..-2]
end
z = Array.new(m, 0)
n.times do |i|
  if t[i] == 100
    if x == cs[i]
      puts "Yes"
      exit
    end
    next
  end
  ok = true
  m.times do |j|
    z[j] = 10000 * x[j] - 100 * t[i] * cs[i][j]
    if z[j] % (100 - t[i]) != 0
      ok = false
      break
    else
      z[j] //= (100 - t[i])
    end
  end
  next if !ok
  if !cards[z].select { |v| v != i }.empty?
    puts "Yes"
    exit
  end
end
puts "No"
0