結果

問題 No.1640 簡単な色塗り
ユーザー simansiman
提出日時 2021-08-13 18:13:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-06-29 17:06:59
合計ジャッジ時間 17,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 76 ms
12,032 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 73 ms
12,288 KB
testcase_04 AC 357 ms
26,496 KB
testcase_05 AC 362 ms
26,624 KB
testcase_06 AC 77 ms
12,032 KB
testcase_07 WA -
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 73 ms
12,032 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 111 ms
13,568 KB
testcase_31 AC 283 ms
26,112 KB
testcase_32 AC 257 ms
22,528 KB
testcase_33 AC 200 ms
19,072 KB
testcase_34 AC 235 ms
22,016 KB
testcase_35 AC 202 ms
19,200 KB
testcase_36 AC 113 ms
13,440 KB
testcase_37 AC 124 ms
14,464 KB
testcase_38 AC 275 ms
23,168 KB
testcase_39 AC 165 ms
16,512 KB
testcase_40 AC 171 ms
17,024 KB
testcase_41 AC 226 ms
21,888 KB
testcase_42 AC 171 ms
18,688 KB
testcase_43 AC 173 ms
18,560 KB
testcase_44 AC 170 ms
18,688 KB
testcase_45 AC 148 ms
16,128 KB
testcase_46 AC 123 ms
14,208 KB
testcase_47 AC 99 ms
13,440 KB
testcase_48 AC 278 ms
23,680 KB
testcase_49 AC 89 ms
12,800 KB
testcase_50 AC 74 ms
12,032 KB
testcase_51 AC 74 ms
12,032 KB
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
Q = []

N.times do |i|
  a, b = gets.split.map(&:to_i)

  Q << [i, [a, b]]
end

Q.sort_by! { |_i, (a, b)| [a, b].min }
checked = Array.new(N + 1, false)
ans = Array.new(N)

Q.each do |i, (a, b)|
  if not checked[a]
    ans[i] = a
    checked[a] = true
  elsif not checked[b]
    ans[i] = b
    checked[b] = true
  else
    puts 'No'
    exit
  end
end

puts 'Yes'
puts ans
0