結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー Lo_OTLo_OT
提出日時 2018-03-24 00:11:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 945 ms / 2,000 ms
コード長 1,251 bytes
コンパイル時間 3,423 ms
コンパイル使用メモリ 71,892 KB
実行使用メモリ 67,244 KB
最終ジャッジ日時 2023-09-07 05:58:20
合計ジャッジ時間 7,832 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
56,032 KB
testcase_01 AC 129 ms
55,868 KB
testcase_02 AC 127 ms
55,724 KB
testcase_03 AC 142 ms
56,100 KB
testcase_04 AC 246 ms
57,436 KB
testcase_05 AC 360 ms
61,332 KB
testcase_06 AC 655 ms
63,824 KB
testcase_07 AC 945 ms
67,244 KB
testcase_08 AC 938 ms
66,752 KB
testcase_09 AC 886 ms
66,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Yukicoder solver = new Yukicoder();
        solver.solve(1, in, out);
        out.close();
    }

    static class Yukicoder {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            String traps = in.next();
            int safe = 0, ouch = 0;
            for (char ch : traps.toCharArray())
                if (ch == 'o') {
                    safe++;
                }
            ouch = traps.length() - safe;

            for (int i = 0; i < traps.length(); i++) {

                out.println(String.format("%.13f", safe * 100 / (double) (safe + ouch)));
                if (traps.charAt(i) == 'o') {
                    safe--;
                } else {
                    ouch--;
                }
            }
        }

    }
}

0