結果

問題 No.495 (^^*) Easy
ユーザー R_FR_F
提出日時 2017-12-03 02:00:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 13,204 ms
コンパイル使用メモリ 442,252 KB
実行使用メモリ 60,108 KB
最終ジャッジ日時 2024-11-20 13:22:41
合計ジャッジ時間 16,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 355 ms
57,780 KB
testcase_01 AC 361 ms
57,804 KB
testcase_02 AC 361 ms
57,980 KB
testcase_03 AC 355 ms
57,712 KB
testcase_04 AC 365 ms
57,904 KB
testcase_05 AC 386 ms
57,700 KB
testcase_06 AC 480 ms
60,108 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 leftCount: Int, var rightCount: Int)

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

	fun faceCount(): Count{
		input.split(")").forEach {
			if (it == "(^^*") count.leftCount++
			else if (it == "(*^^") count.rightCount++
		}
		return count
	}

}

fun main(args: Array<String>){
	var no495 = No495().faceCount()
	println("${no495.leftCount} ${no495.rightCount}")
}
0