結果
問題 | No.504 ゲーム大会(ランキング) |
ユーザー |
|
提出日時 | 2022-12-28 10:43:30 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 564 bytes |
コンパイル時間 | 3,986 ms |
コンパイル使用メモリ | 106,364 KB |
実行使用メモリ | 32,092 KB |
最終ジャッジ日時 | 2024-11-23 02:48:43 |
合計ジャッジ時間 | 6,408 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 6 WA * 7 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; } } } }