結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | Lo_OT |
提出日時 | 2018-03-24 00:11:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 890 ms / 2,000 ms |
コード長 | 1,251 bytes |
コンパイル時間 | 2,037 ms |
コンパイル使用メモリ | 75,860 KB |
実行使用メモリ | 56,292 KB |
最終ジャッジ日時 | 2024-06-25 00:24:44 |
合計ジャッジ時間 | 7,317 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
41,296 KB |
testcase_01 | AC | 124 ms
41,336 KB |
testcase_02 | AC | 127 ms
41,292 KB |
testcase_03 | AC | 144 ms
41,984 KB |
testcase_04 | AC | 215 ms
42,572 KB |
testcase_05 | AC | 333 ms
47,704 KB |
testcase_06 | AC | 606 ms
51,120 KB |
testcase_07 | AC | 869 ms
55,364 KB |
testcase_08 | AC | 890 ms
56,292 KB |
testcase_09 | AC | 831 ms
55,240 KB |
ソースコード
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--; } } } } }