結果

問題 No.227 簡単ポーカー
ユーザー spaciaspacia
提出日時 2015-12-21 23:11:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 989 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 37,148 KB
最終ジャッジ日時 2024-09-18 18:10:40
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,052 KB
testcase_01 AC 53 ms
36,956 KB
testcase_02 AC 52 ms
36,972 KB
testcase_03 AC 53 ms
37,096 KB
testcase_04 AC 54 ms
37,140 KB
testcase_05 AC 54 ms
36,636 KB
testcase_06 AC 52 ms
36,992 KB
testcase_07 AC 53 ms
36,992 KB
testcase_08 AC 53 ms
37,064 KB
testcase_09 AC 51 ms
37,148 KB
testcase_10 AC 52 ms
36,952 KB
testcase_11 AC 53 ms
37,136 KB
testcase_12 AC 54 ms
36,640 KB
testcase_13 AC 52 ms
36,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main227 {
	
	public static void disp (Object obj) {
		System.out.println(obj);
	}
	
	public static String solve (int[] hand) {
		int cntTwo = 0, cntThree = 0;
		int[] seq = new int[14];
		
		for (int h : hand) seq[h]++;
		for (int s : seq) {
			if (s == 2) cntTwo++;
			if (s == 3) cntThree++;
		}
		
		if (cntThree == 1 && cntTwo == 1) {
			return "FULL HOUSE";
		} else if (cntThree == 1 && cntTwo == 0) {
			return "THREE CARD";
		} else if (cntThree == 0 && cntTwo == 2) {
			return "TWO PAIR";
		} else if (cntThree == 0 && cntTwo == 1) {
			return "ONE PAIR";
		} else {
			return "NO HAND";
		}
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		int[] hand = new int[line.length];
		
		for (int i = 0; i < line.length; i++)
			hand[i] = Integer.parseInt(line[i]);
		
		disp(solve(hand));
	}
}
0