結果

問題 No.516 赤と青の風船
ユーザー R_FR_F
提出日時 2017-12-02 17:04:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 12,119 ms
コンパイル使用メモリ 432,252 KB
実行使用メモリ 55,300 KB
最終ジャッジ日時 2024-04-30 16:34:27
合計ジャッジ時間 14,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
55,136 KB
testcase_01 AC 343 ms
55,212 KB
testcase_02 AC 333 ms
55,272 KB
testcase_03 AC 323 ms
55,176 KB
testcase_04 AC 328 ms
55,228 KB
testcase_05 AC 334 ms
55,268 KB
testcase_06 AC 329 ms
55,300 KB
testcase_07 AC 333 ms
55,104 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