結果

問題 No.227 簡単ポーカー
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-09-19 16:03:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 685 bytes
コンパイル時間 3,429 ms
コンパイル使用メモリ 77,384 KB
実行使用メモリ 41,228 KB
最終ジャッジ日時 2024-07-19 07:57:45
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,060 KB
testcase_01 AC 104 ms
39,920 KB
testcase_02 AC 118 ms
41,212 KB
testcase_03 AC 120 ms
41,200 KB
testcase_04 AC 126 ms
40,952 KB
testcase_05 AC 116 ms
41,216 KB
testcase_06 AC 115 ms
41,156 KB
testcase_07 AC 113 ms
41,160 KB
testcase_08 AC 104 ms
40,188 KB
testcase_09 AC 118 ms
41,212 KB
testcase_10 AC 112 ms
40,140 KB
testcase_11 AC 123 ms
41,228 KB
testcase_12 AC 118 ms
41,112 KB
testcase_13 AC 125 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b2015_09_19;

import java.util.Scanner;

public class No227 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int[] C = new int[14];
	int[] A = new int[6];
	for(int i = 1; i<A.length; i++){
		A[i] = sc.nextInt();
	}
	for(int i = 1; i<A.length; i++){
		C[A[i]]++;
	}
	int c1 = 0;
	int c2 = 0;
	for(int i = 1; i<C.length; i++){
		if(C[i]==2){
			c1++;
		}else if(C[i]==3)
			c2++;
	}
	if(c1==1 && c2==1){
		System.out.println("FULL HOUSE");
	}else if(c1==2){
		System.out.println("TWO PAIR");
	}else if(c2==1){
		System.out.println("THREE CARD");
	}else if(c1==1){
		System.out.println("ONE PAIR");
	}else{
		System.out.println("NO HAND");
	}
}
}
0