結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー htensaihtensai
提出日時 2019-11-13 08:49:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 76,216 KB
実行使用メモリ 50,492 KB
最終ジャッジ日時 2024-09-21 21:02:07
合計ジャッジ時間 6,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,164 KB
testcase_01 AC 130 ms
40,876 KB
testcase_02 AC 129 ms
41,104 KB
testcase_03 AC 129 ms
41,420 KB
testcase_04 AC 144 ms
41,640 KB
testcase_05 AC 188 ms
43,196 KB
testcase_06 AC 291 ms
47,964 KB
testcase_07 AC 381 ms
50,492 KB
testcase_08 AC 307 ms
47,632 KB
testcase_09 AC 266 ms
46,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int out = 0;
		int safe = 0;
		for (char c : arr) {
		    if (c == 'o') {
		        safe++;
		    } else {
		        out++;
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < arr.length; i++) {
		    sb.append((double)safe / (safe + out) * 100).append("\n");
		    if (arr[i] == 'o') {
		        safe--;
		    } else {
		        out--;
		    }
		}
		System.out.print(sb);
   }
 }
0