結果

問題 No.397 NO MORE KADOMATSU
ユーザー te-shte-sh
提出日時 2017-07-27 12:11:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 103,544 KB
実行使用メモリ 25,476 KB
平均クエリ数 36.83
最終ジャッジ日時 2024-06-12 21:15:18
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,820 KB
testcase_01 AC 21 ms
24,452 KB
testcase_02 AC 21 ms
24,836 KB
testcase_03 AC 21 ms
24,836 KB
testcase_04 AC 20 ms
25,204 KB
testcase_05 AC 22 ms
25,220 KB
testcase_06 AC 20 ms
24,836 KB
testcase_07 AC 21 ms
24,836 KB
testcase_08 AC 21 ms
25,220 KB
testcase_09 AC 21 ms
25,220 KB
testcase_10 AC 22 ms
25,220 KB
testcase_11 AC 21 ms
24,964 KB
testcase_12 AC 22 ms
24,836 KB
testcase_13 AC 21 ms
25,476 KB
testcase_14 AC 22 ms
25,220 KB
testcase_15 AC 23 ms
24,964 KB
testcase_16 AC 23 ms
25,208 KB
testcase_17 AC 21 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto a = readln.split.to!(int[]);

  size_t[][] r;
  foreach (i; 0..n) {
    auto j = a[i..$].minIndex + i;
    if (i != j) {
      swap(a[i], a[j]);
      r ~= [i, j];
    }
  }

  writeln(r.length);
  foreach (ri; r)
    writeln(ri[0], " ", ri[1]);
  stdout.flush();

  readln;
}
0