結果

問題 No.504 ゲーム大会(ランキング)
ユーザー huffman56huffman56
提出日時 2022-12-28 10:43:30
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 102,528 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-05-02 12:49:40
合計ジャッジ時間 9,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 AC 22 ms
17,664 KB
testcase_02 AC 23 ms
17,536 KB
testcase_03 AC 22 ms
17,408 KB
testcase_04 WA -
testcase_05 AC 21 ms
17,536 KB
testcase_06 AC 22 ms
17,664 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 479 ms
21,504 KB
testcase_13 AC 469 ms
21,760 KB
testcase_14 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.Generic;
using System.Linq;

namespace _0446
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var tmp = 0;
            var ans = 0;

            for (var i = 0; i < n; i++)
            {
                var a = int.Parse(Console.ReadLine());

                if (tmp < a)
                {
                    ans++;
                }

                Console.WriteLine(ans);

                tmp = a;
            }

        }
    }
}
0