結果

問題 No.227 簡単ポーカー
ユーザー きつねうどんきつねうどん
提出日時 2023-11-24 21:36:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 1,529 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 78,736 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-09-26 08:59:21
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,696 KB
testcase_01 AC 112 ms
40,140 KB
testcase_02 AC 122 ms
41,404 KB
testcase_03 AC 122 ms
41,372 KB
testcase_04 AC 121 ms
41,236 KB
testcase_05 AC 121 ms
41,032 KB
testcase_06 AC 122 ms
41,068 KB
testcase_07 AC 122 ms
41,492 KB
testcase_08 AC 124 ms
41,416 KB
testcase_09 AC 129 ms
41,448 KB
testcase_10 AC 123 ms
41,280 KB
testcase_11 AC 117 ms
41,184 KB
testcase_12 AC 124 ms
41,256 KB
testcase_13 AC 122 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        int c = scanner.nextInt();
        int d = scanner.nextInt();
        int e = scanner.nextInt();

        int[] list = {a, b, c, d, e};
        Arrays.sort(list);
//        System.out.println(Arrays.toString(list));

        List<Integer> countList = new ArrayList<Integer>();
        int prev = 0;
        int count = 1;
        for (int i = 0; i < 5; i++) {
            if (i != 0) {
                if (prev == list[i]) {
                    count++;
                } else {
                    countList.add(count);
                    count = 1;
                }
            }
            prev = list[i];
        }

        countList.add(count);

//        System.out.println(countList);

        if (countList.contains(3)) {
            if (countList.contains(2)) {
                System.out.println("FULL HOUSE");
            } else {
                System.out.println("THREE CARD");

            }
        } else {
            if (countList.contains(2)) {
                int twoNum = Collections.frequency(countList, 2);
                if (twoNum == 2) {
                    System.out.println("TWO PAIR");
                } else {
                    System.out.println("ONE PAIR");
                }
            } else {
                System.out.println("NO HAND");
            }
        }
    }
}
0