結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | gorugo30 |
提出日時 | 2021-02-24 11:33:47 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 102 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 103,336 KB |
最終ジャッジ日時 | 2024-09-24 11:59:04 |
合計ジャッジ時間 | 6,159 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,268 KB |
testcase_01 | AC | 37 ms
52,656 KB |
testcase_02 | AC | 37 ms
51,828 KB |
testcase_03 | AC | 38 ms
52,244 KB |
testcase_04 | AC | 47 ms
60,772 KB |
testcase_05 | AC | 109 ms
75,840 KB |
testcase_06 | AC | 1,282 ms
80,908 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
S = input() for i in range(len(S)): T = S[i:] N = len(S) - i print(100 * T.count("o") / N)