結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | 14番 |
提出日時 | 2016-07-16 00:15:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,763 bytes |
コンパイル時間 | 1,175 ms |
コンパイル使用メモリ | 118,044 KB |
実行使用メモリ | 56,148 KB |
最終ジャッジ日時 | 2024-07-17 00:09:29 |
合計ジャッジ時間 | 7,580 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int matsuCount = int.Parse(Reader.ReadLine()); int[] inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray(); inpt.ToList().ForEach(a=>this.Matsu.Add(this.Matsu.Count, a)); StringBuilder ans = new StringBuilder(); int conv = 0; for(int i=0; i<matsuCount; i++) { int min = this.Matsu.Where(a=>a.Key >= i).OrderBy(a=>a.Value).First().Key; if(i != min) { conv++; ans.Append(i + " " + min); int tmp = this.Matsu[i]; this.Matsu[i] = this.Matsu[min]; this.Matsu[min] = tmp; } } Console.WriteLine(conv); Console.Write(ans.ToString()); string dummy = Reader.ReadLine(); } private Dictionary<int, int> Matsu = new Dictionary<int,int>(); private Dictionary<int, int> Goal = new Dictionary<int, int>(); public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 6 1 3 2 2 3 1 -1 "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }