結果

問題 No.504 ゲーム大会(ランキング)
ユーザー R_FR_F
提出日時 2017-12-13 14:03:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,339 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 12,718 ms
コンパイル使用メモリ 434,812 KB
実行使用メモリ 98,896 KB
最終ジャッジ日時 2024-04-30 16:39:44
合計ジャッジ時間 24,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
52,380 KB
testcase_01 AC 332 ms
55,264 KB
testcase_02 AC 334 ms
55,136 KB
testcase_03 AC 331 ms
55,204 KB
testcase_04 AC 335 ms
55,264 KB
testcase_05 AC 336 ms
55,300 KB
testcase_06 AC 353 ms
55,120 KB
testcase_07 AC 1,318 ms
97,800 KB
testcase_08 AC 1,328 ms
98,208 KB
testcase_09 AC 1,339 ms
98,308 KB
testcase_10 AC 1,335 ms
98,036 KB
testcase_11 AC 1,296 ms
98,296 KB
testcase_12 AC 1,233 ms
98,896 KB
testcase_13 AC 1,312 ms
98,156 KB
testcase_14 AC 1,317 ms
97,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:21:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.Scanner

class No504() {
	private var input = Scanner(System. `in`)
	private var testCase = input.nextInt()
	private var rank = 1
	private var kScore = input.nextInt()

	fun ranking() {
		for (i in 1..this.testCase - 1) currentRanking()
		println(this.rank)
	}

	fun currentRanking() {
		println(this.rank)
		if (this.input.nextInt() > this.kScore) this.rank++
	}

}

fun main(args: Array<String>) {
	var no504 = No504()
	no504.ranking()
}
0