結果

問題 No.227 簡単ポーカー
ユーザー nCk_cvnCk_cv
提出日時 2015-09-19 16:13:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 41,256 KB
最終ジャッジ日時 2024-07-19 07:57:50
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,888 KB
testcase_01 AC 117 ms
39,840 KB
testcase_02 AC 117 ms
40,908 KB
testcase_03 AC 117 ms
41,160 KB
testcase_04 AC 114 ms
41,068 KB
testcase_05 AC 115 ms
41,032 KB
testcase_06 AC 107 ms
40,012 KB
testcase_07 AC 116 ms
41,256 KB
testcase_08 AC 118 ms
41,136 KB
testcase_09 AC 118 ms
41,000 KB
testcase_10 AC 109 ms
40,516 KB
testcase_11 AC 107 ms
40,140 KB
testcase_12 AC 105 ms
39,920 KB
testcase_13 AC 106 ms
39,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] name = {"FULL HOUSE","TWO PAIR","THREE CARD","ONE PAIR","","NO HAND"};
		int count[]=new int [13];
		for(int i=0;i<5;i++){
			count[sc.nextInt()-1]++;
		}
		int s = 5;
		for(int i=0;i<13;i++){
			if(count[i] == 2) s-=2;
			if(count[i] == 3) s-=3;
		}
		System.out.println(name[s]);
	}

}
0