結果

問題 No.486 3 Straight Win(3連勝)
ユーザー R_FR_F
提出日時 2017-12-03 16:16:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 10,448 ms
コンパイル使用メモリ 441,068 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-04-30 16:36:25
合計ジャッジ時間 20,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
55,236 KB
testcase_01 AC 296 ms
55,400 KB
testcase_02 AC 291 ms
55,144 KB
testcase_03 AC 287 ms
55,168 KB
testcase_04 AC 301 ms
55,292 KB
testcase_05 AC 303 ms
55,152 KB
testcase_06 AC 296 ms
55,108 KB
testcase_07 AC 304 ms
55,172 KB
testcase_08 AC 295 ms
55,176 KB
testcase_09 AC 295 ms
55,260 KB
testcase_10 AC 294 ms
55,216 KB
testcase_11 AC 317 ms
55,308 KB
testcase_12 AC 304 ms
55,400 KB
testcase_13 AC 299 ms
55,292 KB
testcase_14 AC 307 ms
55,232 KB
testcase_15 AC 294 ms
55,276 KB
testcase_16 AC 288 ms
55,136 KB
testcase_17 AC 301 ms
55,256 KB
testcase_18 AC 302 ms
55,160 KB
testcase_19 AC 298 ms
55,248 KB
testcase_20 AC 355 ms
55,368 KB
testcase_21 AC 294 ms
55,164 KB
testcase_22 AC 296 ms
55,340 KB
testcase_23 AC 300 ms
55,304 KB
testcase_24 AC 294 ms
55,288 KB
testcase_25 AC 294 ms
55,272 KB
testcase_26 AC 288 ms
55,164 KB
testcase_27 AC 290 ms
55,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:27:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.Scanner

data class Count(var eastCount: Int, var westCount: Int)

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

	fun victoryOrDefeat(): Count {
		run breaker@ {
			input.forEach {
				if (it == 'O') {
					count.eastCount++
					count.westCount = 0
				} else {
					count.westCount++
					count.eastCount = 0
				}
				if(count.eastCount == 3 || count.westCount == 3) return@breaker
			}
		}
		return count
	}

}

fun main(args: Array<String>) {
	val no486 = No486().victoryOrDefeat()
	var winner = if (no486.eastCount > no486.westCount) "East" else "West"
	if (no486.eastCount < 3 && no486.westCount < 3) winner = "NA"
	println(winner)
}
0