結果

問題 No.123 カードシャッフル
ユーザー LeonardoneLeonardone
提出日時 2015-10-16 22:12:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 478 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-07-21 18:41:03
合計ジャッジ時間 3,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 88 ms
12,032 KB
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 88 ms
12,288 KB
testcase_10 AC 162 ms
18,560 KB
testcase_11 AC 478 ms
18,688 KB
testcase_12 AC 320 ms
18,304 KB
testcase_13 AC 319 ms
18,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#! ruby
# yukicoder My Practice
# author: Leornadone @ NEETSDKASU

(N, M), A = $<.map{|x| x.chomp.split.map(&:to_i)}

card_top = [0, []]
ref = card_top
1.upto(N) do |i|
	ref[1] = [i, []]
	ref = ref[1]
end

A.each do |ai|
	ref = card_top
	ai.pred.times do
		ref = ref[1]
	end
	new_top = ref[1]
	ref[1] = new_top[1]
	new_top[1] = card_top[1]
	card_top[1] = new_top
end

puts card_top[1][0]
0