結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2018-04-14 16:38:03
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,371 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 9,994 ms
コンパイル使用メモリ 266,372 KB
実行使用メモリ 77,620 KB
最終ジャッジ日時 2024-06-30 05:57:45
合計ジャッジ時間 23,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 810 ms
64,396 KB
testcase_01 AC 819 ms
64,336 KB
testcase_02 AC 850 ms
64,316 KB
testcase_03 AC 861 ms
64,556 KB
testcase_04 AC 896 ms
64,848 KB
testcase_05 AC 1,149 ms
71,520 KB
testcase_06 AC 1,350 ms
77,620 KB
testcase_07 AC 1,371 ms
76,292 KB
testcase_08 AC 1,276 ms
76,036 KB
testcase_09 AC 1,227 ms
75,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main {

	def main(arg:Array[String]) = {
		val list = scala.io.StdIn.readLine().toList;

		var num_o = countChar(list, 'o');
		var num_x = countChar(list, 'x');

		for (c <- list) {
			println(100.0 * num_o / (num_x + num_o));
			if (c == 'o') num_o -= 1;
			else num_x -= 1;
		}
	}

	def countChar(list:List[Char], aim:Char):Int = {
		var cnt = 0;
		for (c <- list) {
			if (c == aim) cnt += 1;
		}
		return cnt;
	}

}
0