結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー tsunabittsunabit
提出日時 2019-06-23 10:42:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,343 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 3,694 ms
コンパイル使用メモリ 84,336 KB
実行使用メモリ 63,384 KB
最終ジャッジ日時 2024-06-07 23:18:15
合計ジャッジ時間 11,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,888 KB
testcase_01 AC 118 ms
40,272 KB
testcase_02 AC 121 ms
40,292 KB
testcase_03 AC 140 ms
41,284 KB
testcase_04 AC 255 ms
43,204 KB
testcase_05 AC 469 ms
50,884 KB
testcase_06 AC 942 ms
55,800 KB
testcase_07 AC 1,343 ms
63,336 KB
testcase_08 AC 1,313 ms
63,344 KB
testcase_09 AC 1,316 ms
63,384 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