結果

問題 No.694 square1001 and Permutation 3
ユーザー バカらっくバカらっく
提出日時 2018-06-08 22:34:05
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,487 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 104,780 KB
実行使用メモリ 49,212 KB
最終ジャッジ日時 2023-09-12 23:57:51
合計ジャッジ時間 7,710 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{

    public void Proc()
    {
        this.N = int.Parse(Reader.ReadLine());

        long[] items = new long[this.N];

        for (int i = 0; i < this.N; i++) {
            items[i] = long.Parse(Reader.ReadLine());
        }

        long ans = 0;

        for (int i = 0; i < items.Length; i++) {
            for (int j = 0; j < items.Length - 1; j++) {
                if(items[j]>items[j+1]) {
                    long tmp = items[j];
                    items[j] = items[j + 1];
                    items[j + 1] = tmp;
                    ans++;
                }
            }
        }
        Console.WriteLine(ans);
    }

    private int N;


	public class Reader
    {
        static StringReader sr;
        public static bool IsDebug = false;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (sr == null)
                {
                    sr = new StringReader(InputText.Trim());
                }
                return sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        private static string InputText = @"



5
2
5
1
4
3




";
    }

    public static void Main(string[] args)
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0