結果

問題 No.495 (^^*) Easy
ユーザー R_FR_F
提出日時 2017-12-03 02:00:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 12,605 ms
コンパイル使用メモリ 432,032 KB
実行使用メモリ 60,100 KB
最終ジャッジ日時 2024-04-30 16:34:59
合計ジャッジ時間 15,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
57,780 KB
testcase_01 AC 346 ms
57,644 KB
testcase_02 AC 350 ms
57,740 KB
testcase_03 AC 337 ms
57,660 KB
testcase_04 AC 358 ms
57,728 KB
testcase_05 AC 375 ms
57,732 KB
testcase_06 AC 463 ms
60,100 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