結果

問題 No.516 赤と青の風船
ユーザー R_FR_F
提出日時 2017-12-02 17:04:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 12,731 ms
コンパイル使用メモリ 436,700 KB
実行使用メモリ 55,364 KB
最終ジャッジ日時 2024-11-20 13:22:14
合計ジャッジ時間 15,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
55,280 KB
testcase_01 AC 355 ms
55,216 KB
testcase_02 AC 350 ms
55,348 KB
testcase_03 AC 357 ms
55,256 KB
testcase_04 AC 348 ms
55,264 KB
testcase_05 AC 354 ms
55,248 KB
testcase_06 AC 355 ms
55,364 KB
testcase_07 AC 353 ms
55,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:19:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.Scanner

data class Count(var red: Int, var blue: Int)

class No516() {
	val input = Scanner(System. `in`)
	val count = Count(0, 0)

	fun colorCount(): String {
		for (i in 0..2) {
			val color = input.next()
			if (color == "RED") count.red++ else count.blue++
		}
		if (count.red < count.blue) return "BLUE" else return "RED"
	}

}

fun main(args: Array<String>) {
	val no516 = No516()
	println(no516.colorCount())
}
0