結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー tsunabittsunabit
提出日時 2019-06-23 10:42:26
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,574 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 4,305 ms
コンパイル使用メモリ 83,660 KB
実行使用メモリ 63,428 KB
最終ジャッジ日時 2024-12-26 10:21:34
合計ジャッジ時間 13,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
40,888 KB
testcase_01 AC 126 ms
40,784 KB
testcase_02 AC 145 ms
39,996 KB
testcase_03 AC 157 ms
41,212 KB
testcase_04 AC 295 ms
43,128 KB
testcase_05 AC 505 ms
51,020 KB
testcase_06 AC 1,066 ms
55,192 KB
testcase_07 AC 1,561 ms
63,428 KB
testcase_08 AC 1,574 ms
63,408 KB
testcase_09 AC 1,454 ms
63,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No667 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String s = sc.next();
    	int ata = s.replace("x", "").length();
    	String[] str = s.split("");
    	
    	for(int i = 0; i < s.length(); i++) {
    		System.out.println(String.format("%.7f", ((double)ata / (s.length() - i)) * 100));
    		if("o".equals(str[i])) ata--;
    	}
    }
}
0