結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,716 KB
testcase_01 AC 121 ms
41,164 KB
testcase_02 AC 125 ms
41,208 KB
testcase_03 AC 125 ms
40,912 KB
testcase_04 AC 181 ms
41,432 KB
testcase_05 AC 290 ms
44,512 KB
testcase_06 AC 585 ms
55,208 KB
testcase_07 AC 809 ms
58,448 KB
testcase_08 AC 764 ms
58,404 KB
testcase_09 AC 705 ms
57,784 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;
            }
        }

        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