結果

問題 No.227 簡単ポーカー
ユーザー rf141rf141
提出日時 2015-06-28 22:52:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 1,761 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-07-07 20:56:35
合計ジャッジ時間 5,015 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
53,036 KB
testcase_01 AC 104 ms
53,868 KB
testcase_02 AC 95 ms
52,796 KB
testcase_03 AC 105 ms
53,964 KB
testcase_04 AC 103 ms
53,052 KB
testcase_05 AC 106 ms
54,032 KB
testcase_06 AC 101 ms
52,904 KB
testcase_07 AC 104 ms
53,732 KB
testcase_08 AC 102 ms
53,796 KB
testcase_09 AC 105 ms
53,744 KB
testcase_10 AC 105 ms
53,968 KB
testcase_11 AC 103 ms
41,060 KB
testcase_12 AC 91 ms
40,124 KB
testcase_13 AC 106 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class EasyPorker {
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		int[] card = new int[5];
		for(int i=0;i<5;i++){
			card[i]=scan.nextInt();
		}
		Map<Integer,Integer> cardNum = new HashMap<Integer,Integer>();
		int count=0;
		for(int i=0; i < 5; i++){
			if(!cardNum.containsKey(card[i])){
				cardNum.put(card[i], 1);
			}else{
				int getNum = cardNum.get(card[i]);
				getNum++;
				cardNum.put(card[i], getNum);
			}
		}
		System.out.println(checkHands(cardNum));	
	}
	public static String checkHands(Map<Integer, Integer> cardNum){
		boolean check_two=false,check_three=false,check_full=false;
		boolean check_two2=false,check_three2=false,check_full2=false;
		switch(cardNum.size()){
		case 5:
			return "NO HAND";
		case 4:
			return "ONE PAIR";
		case 3:
			for(int i = 1; i <= 13; i++){
				if(cardNum.containsKey(i)){
					int get = cardNum.get(i);
					if(get==2){
						check_two=true;
						check_full=true;
						check_three=false;
					}else if(get==3){
						check_three2=true;
						check_full2=true;
						check_two2=false;
					}
				}
			}
			if(check_two&&!check_two2)return "TWO PAIR";
			if(!check_three&&check_three2)return "THREE CARD";
			if(check_full&&check_full2)return "FULL HOUSE";
			break;
		case 2:
			for(int i=1;i<=13;i++){
				if(cardNum.containsKey(i)){
					int get = cardNum.get(i);
					if(get==2){
						check_full=true;
						check_three=false;
					}else if(get==3){
						check_full2=true;
						check_three2=false;
					}else if(get==4){
						return "NO HAND";
					}
				}
			}
			if(check_full&&check_full2)return "FULL HOUSE";
			if(!check_three&&check_three2)return "THREE CARD";
			break;
		case 1:
			return "NO HAND";
		}
		return null;
	}
}
0