結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2020-02-07 18:38:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 11,896 KB
実行使用メモリ 16,172 KB
最終ジャッジ日時 2023-10-25 23:13:47
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
16,172 KB
testcase_01 AC 88 ms
16,172 KB
testcase_02 AC 88 ms
16,172 KB
testcase_03 AC 88 ms
16,172 KB
testcase_04 AC 87 ms
16,172 KB
testcase_05 AC 89 ms
16,172 KB
testcase_06 AC 89 ms
16,172 KB
testcase_07 AC 89 ms
16,172 KB
testcase_08 AC 88 ms
16,172 KB
testcase_09 AC 87 ms
16,172 KB
testcase_10 AC 87 ms
16,172 KB
testcase_11 AC 88 ms
16,172 KB
testcase_12 AC 89 ms
16,172 KB
testcase_13 AC 87 ms
16,172 KB
testcase_14 AC 88 ms
16,172 KB
testcase_15 AC 87 ms
16,172 KB
testcase_16 AC 87 ms
16,172 KB
testcase_17 AC 87 ms
16,172 KB
testcase_18 AC 87 ms
16,172 KB
testcase_19 AC 86 ms
16,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def d(a,b); (a[0] - b[0]).abs + (a[1] - b[1]).abs; end
def num(z); (z[0] * 4 + z[1] + 1) % 16; end

S = Array.new(16)
4.times do |y|
  gets.split.map(&:to_i).each_with_index do |n,x|
    S[n] = [y,x]
  end
end
loop do
  z = S[0]
  n = num(z)
  break if d(S[n], S[0]) != 1
  S[0] = S[n]
  S[n] = z
end
puts 16.times.all?{|n| num(S[n]) == n } ? "Yes" : "No"
0