結果
| 問題 | No.667 Mice's Luck(ネズミ達の運) |
| コンテスト | |
| ユーザー |
_araran_
|
| 提出日時 | 2018-04-13 15:47:56 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 344 bytes |
| 記録 | |
| コンパイル時間 | 546 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 20,700 KB |
| 最終ジャッジ日時 | 2026-03-13 18:15:32 |
| 合計ジャッジ時間 | 9,076 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 RE * 4 |
ソースコード
import sys
def a(str):
print(str, file=sys.stderr)
o_count = str.count("o")
print(o_count, file=sys.stderr)
x_count = str.count("x")
print(x_count, file=sys.stderr)
ret = o_count / (o_count + x_count ) * 100
print(ret)
first = input()
for i in range(len(first)):
a(first)
first = first[1:]
_araran_