結果

問題 No.227 簡単ポーカー
ユーザー S1hoS1ho
提出日時 2017-02-27 14:12:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 1,085 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-06-11 19:23:24
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
54,312 KB
testcase_01 AC 121 ms
53,900 KB
testcase_02 AC 106 ms
53,108 KB
testcase_03 AC 108 ms
53,036 KB
testcase_04 AC 104 ms
53,000 KB
testcase_05 AC 124 ms
54,184 KB
testcase_06 AC 121 ms
54,136 KB
testcase_07 AC 123 ms
54,036 KB
testcase_08 AC 126 ms
54,048 KB
testcase_09 AC 106 ms
52,996 KB
testcase_10 AC 107 ms
52,856 KB
testcase_11 AC 130 ms
54,012 KB
testcase_12 AC 106 ms
52,868 KB
testcase_13 AC 126 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        int[] card = new int[5];
        
        int[] num = new int[14];    //初期値は0
        
        for(int i=0;i<card.length;i++){
            card[i] = scanner.nextInt();
            num[card[i]] += 1;
        }
        
        int count2 = 0;
        int count3 = 0;
        
        //探索
        for(int i=1;i<num.length;i++){
            
            if(num[i] == 2){
                count2++;
            }else if(num[i] == 3){
                count3++;
            }
            
        }
        
        if(count3 == 1 && count2 == 1){
            System.out.println("FULL HOUSE");
        }else if(count3 == 1){
            System.out.println("THREE CARD");
        }else if(count2 == 2){
            System.out.println("TWO PAIR");
        }else if(count2 == 1){
            System.out.println("ONE PAIR");
        }else{
            System.out.println("NO HAND");
        }
        
    }
    
}
0