結果

問題 No.227 簡単ポーカー
ユーザー konken0324konken0324
提出日時 2015-09-19 15:56:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 3,406 ms
コンパイル使用メモリ 76,500 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-07-19 07:57:31
合計ジャッジ時間 5,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,348 KB
testcase_01 AC 134 ms
41,316 KB
testcase_02 AC 121 ms
40,088 KB
testcase_03 AC 134 ms
41,408 KB
testcase_04 AC 131 ms
41,104 KB
testcase_05 AC 131 ms
41,384 KB
testcase_06 AC 131 ms
41,416 KB
testcase_07 AC 130 ms
40,836 KB
testcase_08 AC 133 ms
40,988 KB
testcase_09 AC 134 ms
41,052 KB
testcase_10 AC 135 ms
41,072 KB
testcase_11 AC 134 ms
41,168 KB
testcase_12 AC 132 ms
41,084 KB
testcase_13 AC 130 ms
40,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class m {

	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		int cou[]=new int [13];
		for(int i=0;i<5;i++){
			cou[stdIn.nextInt()-1]++;
		}
		int p2=0;
		int p3=0;
		for(int i=0;i<13;i++){
			if(cou[i]==2)p2++;
			else if(cou[i]==3)p3++;
		}
		if(p3==1&&p2==1){System.out.println("FULL HOUSE");}
		else if(p3==1){System.out.println("THREE CARD");}
		else if(p2==2){System.out.println("TWO PAIR");}
		else if(p2==1){System.out.println("ONE PAIR");}
		else System.out.println("NO HAND");
	}
}
0