結果

問題 No.227 簡単ポーカー
ユーザー konken0324konken0324
提出日時 2015-09-19 15:55:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-07-19 07:57:24
合計ジャッジ時間 4,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,968 KB
testcase_01 AC 129 ms
41,480 KB
testcase_02 AC 132 ms
41,248 KB
testcase_03 WA -
testcase_04 AC 129 ms
40,996 KB
testcase_05 AC 128 ms
41,220 KB
testcase_06 AC 130 ms
41,100 KB
testcase_07 AC 116 ms
39,812 KB
testcase_08 AC 131 ms
41,020 KB
testcase_09 AC 132 ms
41,252 KB
testcase_10 AC 130 ms
41,080 KB
testcase_11 AC 132 ms
40,976 KB
testcase_12 WA -
testcase_13 AC 129 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	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 CARD");}
		else if(p2==1){System.out.println("ONE PAIR");}
		else System.out.println("NO HAND");
	}
}
0