結果

問題 No.504 ゲーム大会(ランキング)
ユーザー umaumaxumaumax
提出日時 2017-04-25 00:48:17
言語 Go
(1.22.1)
結果
AC  
実行時間 1,189 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 14,356 ms
コンパイル使用メモリ 231,168 KB
実行使用メモリ 7,960 KB
最終ジャッジ日時 2024-09-13 17:44:47
合計ジャッジ時間 25,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1,176 ms
7,960 KB
testcase_08 AC 1,188 ms
7,960 KB
testcase_09 AC 1,177 ms
7,960 KB
testcase_10 AC 1,168 ms
7,956 KB
testcase_11 AC 1,169 ms
7,960 KB
testcase_12 AC 768 ms
7,828 KB
testcase_13 AC 760 ms
7,828 KB
testcase_14 AC 1,189 ms
7,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func main() {
	var N int
	fmt.Scan(&N)
	as := make([]int, N)
	for i, _ := range as {
		fmt.Scan(&as[i])
	}
	k := as[0]
	fmt.Println("1")
	cnt := 1
	for _, v := range as[1:] {
		if v > k {
			cnt++
		}
		fmt.Println(cnt)
	}
}
0