結果

問題 No.227 簡単ポーカー
ユーザー sasakkisasakki
提出日時 2016-03-22 10:29:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 744 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-10-01 12:48:43
合計ジャッジ時間 3,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,012 KB
testcase_01 AC 105 ms
41,364 KB
testcase_02 AC 105 ms
41,172 KB
testcase_03 AC 115 ms
41,484 KB
testcase_04 AC 108 ms
41,064 KB
testcase_05 AC 106 ms
41,188 KB
testcase_06 AC 106 ms
41,416 KB
testcase_07 AC 104 ms
40,584 KB
testcase_08 AC 98 ms
40,228 KB
testcase_09 AC 106 ms
40,900 KB
testcase_10 AC 106 ms
41,304 KB
testcase_11 AC 107 ms
41,016 KB
testcase_12 AC 97 ms
40,096 KB
testcase_13 AC 108 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class main{
    public static void main(String args[]){
	Scanner scan = new Scanner(System.in);

	int card[] = new int[13];

	Arrays.fill(card, 0);

	for(int i = 0; i < 5; i++){
	    int num = scan.nextInt();

	    card[num - 1]++;
	}
	
	int thf = 0;
	int twf = 0;

	for(int i = 0; i < 13; i++){
	    if(card[i] == 3){
		thf++;
	    }
	    else if(card[i] == 2){
		twf++;
	    }
	}

	if(thf == 1 && twf == 1){
	    System.out.println("FULL HOUSE");
	}
	else if(thf == 1){
	    System.out.println("THREE CARD");
	}
	else if(twf == 2){
	    System.out.println("TWO PAIR");
	}
	else if(twf == 1){
	    System.out.println("ONE PAIR");
	}
	else{
	    System.out.println("NO HAND");
	}
	
	
    }
}
0