結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー Pump0129Pump0129
提出日時 2018-03-27 00:11:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 995 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 90,344 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-06-25 12:24:07
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,768 KB
testcase_01 AC 160 ms
41,432 KB
testcase_02 AC 161 ms
41,520 KB
testcase_03 AC 169 ms
41,776 KB
testcase_04 AC 227 ms
42,228 KB
testcase_05 AC 364 ms
44,860 KB
testcase_06 AC 691 ms
53,520 KB
testcase_07 AC 987 ms
58,852 KB
testcase_08 AC 995 ms
62,840 KB
testcase_09 AC 982 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no667;

import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        List<String> boxlist = Arrays.asList(scan.nextLine().split(""));

        int passCount = boxlist.stream()
                .filter(s -> s.startsWith("o"))
                .collect(Collectors.toList())
                .size();
        int trapCount = boxlist.stream()
                .filter(s -> s.startsWith("x"))
                .collect(Collectors.toList())
                .size();

        for (String box : boxlist) {
            System.out.println(((double) passCount / (double) (passCount + trapCount)) * 100);
            switch (box.charAt(0)) {
                case 'o':
                    passCount--;
                    break;
                case 'x':
                    trapCount--;
                    break;
            }
        }
    }
}
0