結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | te-sh |
提出日時 | 2017-07-27 12:10:48 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 386 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 102,752 KB |
実行使用メモリ | 40,640 KB |
最終ジャッジ日時 | 2024-06-12 21:14:44 |
合計ジャッジ時間 | 7,112 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
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]+1, " ", ri[1]+1); readln; }