結果

問題 No.397 NO MORE KADOMATSU
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2020-02-20 16:40:13
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 29,408 KB
平均クエリ数 26.67
最終ジャッジ日時 2024-07-16 19:32:17
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
29,024 KB
testcase_01 AC 99 ms
28,768 KB
testcase_02 AC 99 ms
28,512 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 97 ms
28,376 KB
testcase_10 AC 104 ms
28,512 KB
testcase_11 AC 102 ms
28,640 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 97 ms
28,880 KB
testcase_17 AC 98 ms
28,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
O = (0 ... N).sort_by{|i| A[i] }
used = Array.new(N)
T = N.times.map do |i| 
  if O[i] != i && A[O[i]] != A[i] && !used[i] 
    used[i] = used[O[i]] = true
    "#{i} #{O[i]}"
  else
    nil
  end
end
T.compact!
puts T.size
puts T
$stdout.flush
gets
exit(0)
0