結果

問題 No.490 yukiソート
ユーザー mbanmban
提出日時 2017-03-11 19:13:43
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,822 bytes
コンパイル時間 3,793 ms
コンパイル使用メモリ 105,760 KB
実行使用メモリ 26,072 KB
最終ジャッジ日時 2023-09-06 18:10:46
合計ジャッジ時間 6,198 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
21,524 KB
testcase_01 WA -
testcase_02 AC 52 ms
23,676 KB
testcase_03 AC 54 ms
23,628 KB
testcase_04 AC 62 ms
21,804 KB
testcase_05 AC 57 ms
21,672 KB
testcase_06 AC 61 ms
21,744 KB
testcase_07 AC 62 ms
21,728 KB
testcase_08 AC 61 ms
21,876 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 53 ms
21,492 KB
testcase_25 AC 55 ms
21,696 KB
testcase_26 AC 54 ms
21,628 KB
testcase_27 AC 54 ms
23,760 KB
testcase_28 AC 52 ms
19,696 KB
testcase_29 AC 54 ms
21,636 KB
testcase_30 AC 54 ms
19,528 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.

ソースコード

diff #

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)
    {
        a ^= b;
        b ^= a;
        a ^= b;
    }
}

0