結果

問題 No.429 CupShuffle
ユーザー hogeover30hogeover30
提出日時 2017-01-04 23:16:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 38,400 KB
最終ジャッジ日時 2024-06-06 02:44:28
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 91 ms
12,032 KB
testcase_06 AC 96 ms
12,032 KB
testcase_07 AC 96 ms
12,160 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 94 ms
12,160 KB
testcase_10 AC 111 ms
14,976 KB
testcase_11 AC 283 ms
35,328 KB
testcase_12 AC 274 ms
34,944 KB
testcase_13 AC 287 ms
35,200 KB
testcase_14 AC 287 ms
38,400 KB
testcase_15 AC 91 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k,x,*t=`dd`.split.map &:to_i
c=0,*t.pop(n)
f=->v,m{m.times{a,b=t.pop 2;v[a],v[b]=v[b],v[a]}}
f[c,k-x]
s=*0..n
t.reverse!
f[s,x]
$><<(1..n).select{|i|c[i]!=s[i]}*' '
0