結果

問題 No.397 NO MORE KADOMATSU
ユーザー mban259mban259
提出日時 2016-08-02 19:10:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 999 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 114,616 KB
実行使用メモリ 44,404 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:17:13
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
43,448 KB
testcase_01 AC 54 ms
43,672 KB
testcase_02 AC 52 ms
44,404 KB
testcase_03 AC 64 ms
43,784 KB
testcase_04 AC 55 ms
41,612 KB
testcase_05 AC 65 ms
41,480 KB
testcase_06 AC 75 ms
41,508 KB
testcase_07 AC 76 ms
42,116 KB
testcase_08 AC 57 ms
43,544 KB
testcase_09 AC 51 ms
41,732 KB
testcase_10 AC 121 ms
42,004 KB
testcase_11 AC 51 ms
41,860 KB
testcase_12 AC 92 ms
39,696 KB
testcase_13 AC 101 ms
44,184 KB
testcase_14 AC 95 ms
43,804 KB
testcase_15 AC 98 ms
42,244 KB
testcase_16 AC 52 ms
41,884 KB
testcase_17 AC 51 ms
41,860 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.Collections.Generic;
using System.Linq;

class Cla {
    static int N;
    static int[] A;
    static int Cnt = 0;
    static List<int[]> Change = new List<int[]>();
    static void Main() {
        N = int.Parse(Console.ReadLine());
        A = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
        for(int i = N - 1; i >= 1; i--) {
            for(int j = 0; j < i; j++) {
                if (A[j] > A[j + 1]) {
                    Cnt++;
                    int[] a = new int[2];
                    a[0] = j;
                    a[1] = j + 1;
                    Change.Add(a);
                    int w = A[j];
                    A[j] = A[j + 1];
                    A[j + 1] = w; 
                }
            }
        }
        Console.WriteLine(Cnt);
        for(int i = 0; i < Change.Count; i++) {
            Console.WriteLine(Change[i][0] + " " + Change[i][1]);

        }
        Console.Out.Flush();
        Console.ReadLine();
    }
}
0