結果
問題 | No.490 yukiソート |
ユーザー | mban |
提出日時 | 2017-03-11 19:17:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,829 bytes |
コンパイル時間 | 1,182 ms |
コンパイル使用メモリ | 115,376 KB |
実行使用メモリ | 28,360 KB |
最終ジャッジ日時 | 2024-06-24 12:34:54 |
合計ジャッジ時間 | 3,588 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
25,564 KB |
testcase_01 | WA | - |
testcase_02 | AC | 34 ms
25,188 KB |
testcase_03 | AC | 33 ms
23,272 KB |
testcase_04 | AC | 38 ms
27,948 KB |
testcase_05 | AC | 38 ms
25,640 KB |
testcase_06 | AC | 37 ms
25,644 KB |
testcase_07 | AC | 37 ms
25,900 KB |
testcase_08 | AC | 38 ms
23,480 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 34 ms
25,436 KB |
testcase_25 | AC | 33 ms
25,140 KB |
testcase_26 | AC | 32 ms
25,184 KB |
testcase_27 | AC | 33 ms
27,096 KB |
testcase_28 | AC | 33 ms
27,476 KB |
testcase_29 | AC | 32 ms
25,696 KB |
testcase_30 | AC | 34 ms
27,344 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
コンパイルメッセージ
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; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; using System.ComponentModel; class Program { static void Main(string[] args) { var alice = new Magatro(); alice.Scan(); alice.Solve(); } } public class Scanner { private StreamReader Sr; private string[] S; private int Index; private const char Separator = ' '; public Scanner() : this(Console.OpenStandardInput()) { Index = 0; S = new string[0]; } public Scanner(Stream source) { Sr = new StreamReader(source); } private string[] Line() { return Sr.ReadLine().Split(Separator); } public string Next() { string result; if (Index >= S.Length) { S = Line(); Index = 0; } result = S[Index]; Index++; return result; } public T Next<T>() { var converter = TypeDescriptor.GetConverter(typeof(T)); return (T)converter.ConvertFromString(Next()); } public int NextInt() { return int.Parse(Next()); } public double NextDouble() { return double.Parse(Next()); } public long NextLong() { return long.Parse(Next()); } public decimal NextDecimal() { return decimal.Parse(Next()); } public string[] StringArray(int index = 0) { Next(); Index = S.Length; return S.Skip(index).ToArray(); } public int[] IntArray(int index = 0) { return StringArray(index).Select(int.Parse).ToArray(); } public long[] LongArray(int index = 0) { return StringArray(index).Select(long.Parse).ToArray(); } public bool EndOfStream { get { return Sr.EndOfStream; } } } public class Magatro { private int N; private int[] A; public void Scan() { Scanner cin = new Scanner(); N = cin.NextInt(); A = cin.IntArray(); } public void Solve() { for (int i = 0; i <= 2 * N - 3; i++) { for (int p = 0; p <= N - 1; p++) { int q = i - p; if (q < 0 || N <= q) { continue; } if (p >= q) { continue; } if (A[p] > A[q]) { Swap(ref A[p], ref A[q]); } } } Console.WriteLine(string.Join(" ", A)); } private void Swap(ref int a, ref int b) { var temp = a; a = b; b = temp; } }