結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 83 ms
12,032 KB
testcase_06 AC 87 ms
12,288 KB
testcase_07 AC 79 ms
12,288 KB
testcase_08 AC 76 ms
12,032 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 93 ms
14,976 KB
testcase_11 AC 241 ms
35,328 KB
testcase_12 AC 240 ms
35,072 KB
testcase_13 AC 237 ms
35,328 KB
testcase_14 AC 240 ms
38,272 KB
testcase_15 AC 75 ms
12,288 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]
$><<(1..n).select{|i|c[i]!=s[i]}*' '
0