結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー Pump0129Pump0129
提出日時 2018-03-27 10:17:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 1,730 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 88,720 KB
実行使用メモリ 59,232 KB
最終ジャッジ日時 2024-06-25 12:41:25
合計ジャッジ時間 8,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,268 KB
testcase_01 AC 116 ms
40,304 KB
testcase_02 AC 131 ms
41,648 KB
testcase_03 AC 140 ms
41,380 KB
testcase_04 AC 185 ms
41,932 KB
testcase_05 AC 311 ms
44,824 KB
testcase_06 AC 599 ms
55,336 KB
testcase_07 AC 840 ms
59,232 KB
testcase_08 AC 829 ms
59,204 KB
testcase_09 AC 753 ms
58,488 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(""));

        // Stream API 使用
        /*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();*/

        // Stream API 未使用

        /*int passCount = 0;
        int trapCount = 0;

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

        // Stream API 改良

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

        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