結果

問題 No.227 簡単ポーカー
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 12:03:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-10-13 04:06:26
合計ジャッジ時間 4,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,352 KB
testcase_01 AC 120 ms
40,952 KB
testcase_02 AC 121 ms
41,012 KB
testcase_03 AC 122 ms
41,484 KB
testcase_04 AC 119 ms
41,248 KB
testcase_05 AC 120 ms
41,184 KB
testcase_06 AC 121 ms
40,996 KB
testcase_07 AC 117 ms
40,864 KB
testcase_08 AC 120 ms
40,864 KB
testcase_09 AC 120 ms
41,156 KB
testcase_10 AC 116 ms
41,076 KB
testcase_11 AC 122 ms
41,248 KB
testcase_12 AC 120 ms
41,060 KB
testcase_13 AC 122 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		ArrayList<String> a=new ArrayList<>();
		for(int i=0;i<5;i++){
			a.add(sc.next());
		}
		
		int three=0;
		int two=0;
		String ans = "NO HAND";
		
		// カウント
		TreeSet<String> b=new TreeSet<>(a);
		
		
		for(String s:b){
			int coun=0;
			for(String c:a){
				if(s.equals(c))coun++;
			}
			if(coun == 3){
				three +=1;
			}else if(coun == 2){
				two +=1;
			}
		}
		
		// 判定
		if(three==1){
			if(two==1){
				ans="FULL HOUSE";
			}else{
				ans="THREE CARD";
			}
		}else if(two==2){
			ans="TWO PAIR";
		}else if(two==1){
			ans="ONE PAIR";
		}
		
		System.out.println(ans);
	}
}
0