結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー firecat_5053firecat_5053
提出日時 2018-05-11 20:15:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 109 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 10,472 KB
実行使用メモリ 12,404 KB
最終ジャッジ日時 2023-09-10 12:39:27
合計ジャッジ時間 5,497 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
12,404 KB
testcase_01 AC 16 ms
7,772 KB
testcase_02 AC 15 ms
7,700 KB
testcase_03 AC 16 ms
7,836 KB
testcase_04 AC 30 ms
7,792 KB
testcase_05 AC 1,244 ms
7,756 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

box = list(input())
N = len(box)
for i in range(N):
    print(box.count("o") / len(box) * 100)
    del box[0]
0