結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | algon_320 |
提出日時 | 2018-03-23 22:40:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 251 ms / 2,000 ms |
コード長 | 1,136 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-24 21:51:53 |
合計ジャッジ時間 | 3,316 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,880 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 32 ms
10,752 KB |
testcase_04 | AC | 33 ms
10,880 KB |
testcase_05 | AC | 55 ms
10,880 KB |
testcase_06 | AC | 147 ms
11,008 KB |
testcase_07 | AC | 251 ms
11,008 KB |
testcase_08 | AC | 183 ms
11,008 KB |
testcase_09 | AC | 194 ms
11,008 KB |
ソースコード
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys from collections import deque import heapq from collections import Counter import math # ------------------------------------------------------ class IN: @staticmethod def singleInt(): return int(input()) @staticmethod def singleStr(): return input() @staticmethod def listInt(): return list(map(int, input().split())) @staticmethod def listStr(): return input().split() # ------------------------------------------------------ print = lambda s: sys.stdout.write(str(s) + "\r\n") def contain(c, x): return (x in c) def str_reverse(s): return s[::-1] def ctoi(c): return int.from_bytes(c.encode(), byteorder='big') def itoc(x): return x.to_bytes((x.bit_length() + 7) // 8, byteorder='big').decode() INF = 1001001001001001001 MOD = 1000000007 # ------------------------------------------------------ if __name__ == '__main__': S = IN.singleStr() cnt = Counter(S) N = len(S) for i in range(N): print(cnt["o"] / (cnt["o"]+cnt["x"]) * 100.0) cnt[S[i]] -= 1