結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | NiER_Replicant6 |
提出日時 | 2018-03-23 23:02:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-06-24 22:42:25 |
合計ジャッジ時間 | 3,860 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
16,128 KB |
testcase_01 | AC | 28 ms
10,496 KB |
testcase_02 | AC | 28 ms
10,496 KB |
testcase_03 | AC | 28 ms
10,496 KB |
testcase_04 | AC | 110 ms
10,624 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
A = input() A = list(A) C=0 D=0 for i in range(len(A)): B = len(A) for i in A: if i=="o": C = C+1 if i=="x": D = D+1 print("{:.9}".format((C/B)*100)) C = 0 A.pop(0)