結果

問題 No.504 ゲーム大会(ランキング)
ユーザー R_FR_F
提出日時 2017-12-13 14:03:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,460 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 11,288 ms
コンパイル使用メモリ 429,052 KB
実行使用メモリ 98,296 KB
最終ジャッジ日時 2024-11-20 13:27:43
合計ジャッジ時間 27,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
55,168 KB
testcase_01 AC 380 ms
55,308 KB
testcase_02 AC 380 ms
55,280 KB
testcase_03 AC 377 ms
55,284 KB
testcase_04 AC 384 ms
55,264 KB
testcase_05 AC 384 ms
55,184 KB
testcase_06 AC 386 ms
55,304 KB
testcase_07 AC 1,459 ms
98,076 KB
testcase_08 AC 1,443 ms
98,144 KB
testcase_09 AC 1,415 ms
98,236 KB
testcase_10 AC 1,438 ms
98,148 KB
testcase_11 AC 1,460 ms
98,176 KB
testcase_12 AC 1,334 ms
96,872 KB
testcase_13 AC 1,301 ms
97,456 KB
testcase_14 AC 1,451 ms
98,296 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