結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | Maboy |
提出日時 | 2021-06-21 14:20:12 |
言語 | Swift (5.10.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 170 bytes |
コンパイル時間 | 603 ms |
コンパイル使用メモリ | 121,384 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-06-22 22:50:06 |
合計ジャッジ時間 | 4,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 9 ms
8,960 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
var n = Array(readLine()!) while n.count > 0{ var c = 0 for i in n{ c += i == "o" ? 1 : 0 } print(Double(c)/Double(n.count)) n.removeFirst() }