結果

問題 No.397 NO MORE KADOMATSU
ユーザー mbanmban
提出日時 2016-11-10 15:57:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 109,988 KB
実行使用メモリ 44,148 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:36:34
合計ジャッジ時間 3,518 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
43,752 KB
testcase_01 AC 54 ms
39,816 KB
testcase_02 AC 52 ms
41,728 KB
testcase_03 AC 61 ms
42,244 KB
testcase_04 AC 54 ms
41,724 KB
testcase_05 AC 62 ms
43,552 KB
testcase_06 AC 74 ms
44,020 KB
testcase_07 AC 76 ms
44,016 KB
testcase_08 AC 57 ms
39,692 KB
testcase_09 AC 53 ms
39,816 KB
testcase_10 AC 110 ms
41,876 KB
testcase_11 AC 54 ms
44,148 KB
testcase_12 AC 85 ms
43,668 KB
testcase_13 AC 91 ms
43,636 KB
testcase_14 AC 91 ms
42,284 KB
testcase_15 AC 87 ms
42,232 KB
testcase_16 AC 52 ms
41,732 KB
testcase_17 AC 52 ms
42,072 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 Magatro
{
   
    static void Main()
    {
        List<string> L = new List<string>();
        int N = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
        for(int i = N; i >=1; i--)
        {
            for(int j = 0; j < i-1; j++)
            {
                if (a[j] > a[j + 1])
                {
                    int q = a[j];
                    a[j] = a[j+1] ;
                    a[j + 1] = q;
                    L.Add(string.Format("{0} {1}", j, j + 1));
                }
            }
        }
        Console.WriteLine(L.Count);
        for(int i = 0; i < L.Count; i++)
        {
            Console.WriteLine(L[i]);
        }
        Console.WriteLine();
    }
   
   
}
0