結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー tomeruntomerun
提出日時 2021-06-06 18:49:32
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 11,778 ms
コンパイル使用メモリ 295,876 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-05-05 01:51:54
合計ジャッジ時間 13,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i)
v = (0...n).to_a.sort_by { |i| a[i] }
v += v
pos = v.index(0).not_nil!
puts (v[pos, n].map { |v| v + 1 } + [1]).join(" ")
0