結果

問題 No.227 簡単ポーカー
ユーザー uafr_csuafr_cs
提出日時 2015-06-19 23:31:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 1,145 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 78,624 KB
実行使用メモリ 55,800 KB
最終ジャッジ日時 2024-07-07 04:20:07
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
52,484 KB
testcase_01 AC 110 ms
55,800 KB
testcase_02 AC 107 ms
53,620 KB
testcase_03 AC 103 ms
53,020 KB
testcase_04 AC 107 ms
53,508 KB
testcase_05 AC 115 ms
54,036 KB
testcase_06 AC 106 ms
54,084 KB
testcase_07 AC 109 ms
54,092 KB
testcase_08 AC 98 ms
52,808 KB
testcase_09 AC 104 ms
53,056 KB
testcase_10 AC 111 ms
53,960 KB
testcase_11 AC 103 ms
52,936 KB
testcase_12 AC 105 ms
54,024 KB
testcase_13 AC 102 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	
	public static final int SIZE = 5;
	public static final int RANGE = 13;
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int[] arr = new int[SIZE];
		for(int i = 0; i < SIZE; i++){
			arr[i] = sc.nextInt() - 1;
		}
		
		int[] counts = new int[RANGE];
		for(int i = 0; i < SIZE; i++){
			counts[arr[i]]++;
		}
		int fst_max = 0, snd_max = 0;
		for(int i = 0; i < RANGE; i++){
			if(fst_max < counts[i]){
				snd_max = fst_max;
				fst_max = counts[i];
			}else if(snd_max < counts[i]){
				snd_max = counts[i];
			}
		}
		
		switch(fst_max){
		case 3:
			if(snd_max >= 2){
				System.out.println("FULL HOUSE");
			}else{
				System.out.println("THREE CARD");
			}
			break;
		case 2:
			if(snd_max >= 2){
				System.out.println("TWO PAIR");
			}else{
				System.out.println("ONE PAIR");
			}
			break;
		default:
			System.out.println("NO HAND");
			break;
		}
	}
}
0