結果
問題 |
No.667 Mice's Luck(ネズミ達の運)
|
ユーザー |
![]() |
提出日時 | 2025-07-15 08:29:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 189 bytes |
コンパイル時間 | 1,420 ms |
コンパイル使用メモリ | 12,160 KB |
実行使用メモリ | 18,852 KB |
最終ジャッジ日時 | 2025-07-15 10:16:22 |
合計ジャッジ時間 | 5,968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 TLE * 1 -- * 3 |
ソースコード
def ave(ns): total = sum(ns) size = len(ns) return total / size s = input() ns = [ 100 if c == 'o' else 0 for c in s ] for i in range(len(s)): print(ave(ns[i:]))