結果
| 問題 | No.667 Mice's Luck(ネズミ達の運) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-28 11:01:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 124 bytes |
| 記録 | |
| コンパイル時間 | 355 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 30,592 KB |
| 最終ジャッジ日時 | 2026-03-23 07:46:19 |
| 合計ジャッジ時間 | 15,204 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 TLE * 4 |
ソースコード
s = list(input())
for i in range(len(s)):
o = s.count('o')
x = s.count('x')
print(o / (o+x) * 100)
s.pop(0)