結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | tubo28 |
提出日時 | 2016-07-16 17:31:03 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 229 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 29,440 KB |
平均クエリ数 | 58.11 |
最終ジャッジ日時 | 2024-07-16 10:42:24 |
合計ジャッジ時間 | 5,234 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
28,896 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 104 ms
28,896 KB |
testcase_10 | WA | - |
testcase_11 | AC | 106 ms
28,768 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 98 ms
29,136 KB |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i a = gets.split.map(&:to_i) ans = [] n.times { |i| j = a.each_with_index.min[1] if i != j a[i], a[j] = a[j], a[i] ans << [i,j] end } puts ans.size ans.each { |a,b| puts "#{a} #{b}" } $>.flush gets