結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | Maboy |
提出日時 | 2021-06-21 16:56:12 |
言語 | Swift (5.10.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 209 bytes |
コンパイル時間 | 1,102 ms |
コンパイル使用メモリ | 174,260 KB |
実行使用メモリ | 24,352 KB |
最終ジャッジ日時 | 2024-06-22 22:51:27 |
合計ジャッジ時間 | 6,193 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
23,968 KB |
testcase_01 | AC | 9 ms
16,640 KB |
testcase_02 | AC | 10 ms
16,896 KB |
testcase_03 | AC | 10 ms
16,768 KB |
testcase_04 | AC | 25 ms
16,768 KB |
testcase_05 | AC | 1,377 ms
17,216 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import Foundation var n = readLine()! var c = n.count - n.replacingOccurrences(of: "o", with: "").count while n.count > 0{ print(Double(c) / Double(n.count) * 100) c -= n.removeFirst() == "o" ? 1 : 0 }