結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー tentententen
提出日時 2020-10-09 11:45:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 75,592 KB
実行使用メモリ 61,076 KB
最終ジャッジ日時 2024-07-20 06:44:04
合計ジャッジ時間 7,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,060 KB
testcase_01 AC 141 ms
53,908 KB
testcase_02 AC 140 ms
53,628 KB
testcase_03 AC 135 ms
53,912 KB
testcase_04 AC 147 ms
53,744 KB
testcase_05 AC 197 ms
56,148 KB
testcase_06 AC 325 ms
57,276 KB
testcase_07 AC 387 ms
61,076 KB
testcase_08 AC 309 ms
57,692 KB
testcase_09 AC 262 ms
57,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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