結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー tomeruntomerun
提出日時 2021-06-06 18:53:41
言語 Crystal
(1.11.2)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 10,461 ms
コンパイル使用メモリ 296,812 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-05-05 01:52:08
合計ジャッジ時間 11,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 65 ms
17,280 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i)
v = (0...n).to_a.sort_by { |i| a[i] }
pre = [] of Int32
suf = [] of Int32
n.times do |i|
  if i % 2 == 0
    pre << v[i]
  else
    suf << v[i]
  end
end
pre += suf.reverse
pre += pre
pos = pre.index(0).not_nil!
puts (pre[pos, n].map { |v| v + 1 } + [1]).join(" ")
0