結果

問題 No.490 yukiソート
ユーザー 14番14番
提出日時 2017-03-10 22:40:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,634 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 113,648 KB
実行使用メモリ 27,788 KB
最終ジャッジ日時 2024-06-24 10:09:07
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
27,452 KB
testcase_01 AC 30 ms
23,216 KB
testcase_02 AC 30 ms
23,092 KB
testcase_03 AC 30 ms
25,528 KB
testcase_04 AC 35 ms
23,472 KB
testcase_05 AC 36 ms
25,648 KB
testcase_06 AC 36 ms
27,696 KB
testcase_07 AC 35 ms
23,864 KB
testcase_08 AC 35 ms
27,760 KB
testcase_09 AC 35 ms
25,720 KB
testcase_10 AC 35 ms
25,716 KB
testcase_11 AC 36 ms
27,756 KB
testcase_12 AC 35 ms
27,376 KB
testcase_13 AC 36 ms
27,632 KB
testcase_14 AC 52 ms
23,732 KB
testcase_15 AC 52 ms
26,032 KB
testcase_16 AC 52 ms
25,656 KB
testcase_17 AC 52 ms
25,904 KB
testcase_18 AC 52 ms
25,772 KB
testcase_19 AC 51 ms
27,788 KB
testcase_20 AC 50 ms
25,652 KB
testcase_21 AC 51 ms
25,760 KB
testcase_22 AC 52 ms
25,528 KB
testcase_23 AC 51 ms
27,660 KB
testcase_24 AC 30 ms
25,404 KB
testcase_25 AC 31 ms
25,284 KB
testcase_26 AC 31 ms
25,400 KB
testcase_27 AC 31 ms
27,572 KB
testcase_28 AC 30 ms
25,260 KB
testcase_29 AC 30 ms
25,412 KB
testcase_30 AC 31 ms
25,536 KB
testcase_31 AC 32 ms
25,132 KB
testcase_32 AC 31 ms
25,520 KB
testcase_33 AC 31 ms
25,412 KB
testcase_34 AC 30 ms
27,316 KB
testcase_35 AC 30 ms
25,540 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Text;
 
public class Program
{
    public void Proc() {
        Reader.IsDebug = false;
        int n = int.Parse(Reader.ReadLine());
        long[] arr = Reader.ReadLine().Split(' ').Select(a=>long.Parse(a)).ToArray();

        for(int i=1; i<2*n-3; i++) {
            for(int j=0; j<n; j++) {
                int idx1 = j;
                int idx2 = i-j;
                if(idx2 < idx1) {
                    break;
                }
                if(idx2 >= n) {
                    continue;
                }
                if(arr[idx1] > arr[idx2]) {
                    Swap(arr, idx1, idx2);
                }

            }
        }
        Console.WriteLine(string.Join(" ", arr));

    }

    private void Swap(long[] arr, int idx1, int idx2) {
        long num = arr[idx1];
        arr[idx1] = arr[idx2];
        arr[idx2] = num;
    }







    public class Reader {
        public static bool IsDebug = true;
        private static System.IO.StringReader SReader;
        private static string InitText = @"


15
3 1 4 1 5 9 2 6 5 3 5 8 9 7 9

";
        public static string ReadLine() {
            if(IsDebug) {
                if(SReader == null) {
                    SReader = new System.IO.StringReader(InitText.Trim());
                }
                return SReader.ReadLine();
            } else {
                return Console.ReadLine();
            }
        }
    }
    public static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0