結果

問題 No.227 簡単ポーカー
ユーザー eagleeagle
提出日時 2022-06-14 10:34:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,326 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-10-02 03:40:18
合計ジャッジ時間 4,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,156 KB
testcase_01 WA -
testcase_02 AC 106 ms
40,044 KB
testcase_03 AC 115 ms
41,140 KB
testcase_04 AC 118 ms
41,168 KB
testcase_05 AC 108 ms
40,184 KB
testcase_06 AC 106 ms
40,296 KB
testcase_07 AC 113 ms
41,056 KB
testcase_08 AC 104 ms
40,248 KB
testcase_09 AC 113 ms
41,248 KB
testcase_10 AC 113 ms
41,068 KB
testcase_11 AC 117 ms
41,028 KB
testcase_12 AC 105 ms
40,136 KB
testcase_13 AC 113 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//与えられるカード
		int[] A = new int[5];
		for(int i = 0; i < A.length; i++) {
			A[i] = sc.nextInt();
		}
		//カードを昇順に並び替える
		Arrays.sort(A);
		//フルハウス判定
		boolean three = false; //スリーカード判定
		boolean pair = false; //ペア判定
		boolean twoPair = false; //ツーペア判定
		String ans;
		//先頭から順に同じカードの数を数える
		for(int i = 0; i < A.length - 1; i++) {
			int cnt = 1;
			for(int j = i + 1; j < A.length; j++) {
				if(A[i] == A[j]) {
					cnt++;
				} else {
					i = j - 1;
					break;
				}
			}
			//スリーカード判定
			if(cnt >= 4) {
				break;
			} else if(cnt == 3) {
				three = true;
				if(i == 2) {
					break;
				}
			//ペア判定
			} else if(cnt == 2 && !pair){
				pair = true;
			//ツーペア判定
			} else if(cnt == 2 && pair) {
				twoPair = true;
			}
		}
		//役判定
		if(three && pair) {
			ans = "FULL HOUSE";
		} else if(three) {
			ans = "THREE CARD";
		} else if(twoPair) {
			ans = "TWO PAIR";
		} else if(pair) {
			ans = "ONE PAIR";
		} else {
			ans = "NO HAND";
		}
		System.out.println(ans);
	}
}
0