結果

問題 No.227 簡単ポーカー
ユーザー moriyukimoriyuki
提出日時 2023-04-14 18:33:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 1,042 bytes
コンパイル時間 5,809 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-10 09:38:36
合計ジャッジ時間 8,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,000 KB
testcase_01 AC 130 ms
53,940 KB
testcase_02 AC 130 ms
54,180 KB
testcase_03 AC 118 ms
52,980 KB
testcase_04 AC 130 ms
53,688 KB
testcase_05 AC 130 ms
53,856 KB
testcase_06 AC 136 ms
53,728 KB
testcase_07 AC 131 ms
54,128 KB
testcase_08 AC 132 ms
54,104 KB
testcase_09 AC 131 ms
53,908 KB
testcase_10 AC 130 ms
53,880 KB
testcase_11 AC 132 ms
53,952 KB
testcase_12 AC 132 ms
53,628 KB
testcase_13 AC 131 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;

public class poker {
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int[] n = new int[14];
        int[] a = new int[5];
        int three = 0;
        int two = 0;
        
        for (int i = 0; i<5; i++) {
        	a[i] = Integer.parseInt(sc.next());
        }
        
        for (int i = 0; i < 5; i++) {
        	n[a[i]]++;
        }
        
        for (int i = 0; i < n.length; i++) {
        	switch (n[i]) {
        	case 2 :
        		two++;
        		break;
        	case 3 :
        		three++;
        		break;
        	}
        }
        
        if (two == 1 && three == 1) {
        	System.out.println("FULL HOUSE");
        } else if (three == 1) {
        	System.out.println("THREE CARD");
        } else if (two == 2) {
        	System.out.println("TWO PAIR");
        } else if (two == 1) {
        	System.out.println("ONE PAIR");
        } else {
        	System.out.println("NO HAND");
        }
        
	}
}
0