結果

問題 No.504 ゲーム大会(ランキング)
ユーザー varrhovarrho
提出日時 2019-09-20 17:16:54
言語 Nim
(2.0.2)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 4,538 ms
コンパイル使用メモリ 65,436 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-09-14 08:13:44
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 167 ms
5,888 KB
testcase_08 AC 169 ms
6,016 KB
testcase_09 AC 169 ms
5,888 KB
testcase_10 AC 165 ms
6,016 KB
testcase_11 AC 167 ms
5,888 KB
testcase_12 AC 164 ms
5,888 KB
testcase_13 AC 162 ms
5,888 KB
testcase_14 AC 167 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils
let
  n: int = stdin.readline.parseInt
  a: seq[int] = mapIt(0..<n, stdin.readline.parseInt)
var ans: seq[int] = @[1]
for i in 1..<n:
  var tmp: int = ans[i - 1]
  if a[0] < a[i]:
    tmp.inc
  ans.add(tmp)
for i in ans:
  echo i
0