結果

問題 No.227 簡単ポーカー
ユーザー 37zigen37zigen
提出日時 2016-03-22 12:56:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-10-01 12:49:49
合計ジャッジ時間 5,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,004 KB
testcase_01 AC 137 ms
53,984 KB
testcase_02 AC 138 ms
53,856 KB
testcase_03 AC 137 ms
54,220 KB
testcase_04 AC 138 ms
54,116 KB
testcase_05 AC 140 ms
53,828 KB
testcase_06 AC 138 ms
54,228 KB
testcase_07 AC 136 ms
54,236 KB
testcase_08 AC 134 ms
53,912 KB
testcase_09 AC 134 ms
54,400 KB
testcase_10 AC 138 ms
54,092 KB
testcase_11 AC 137 ms
53,816 KB
testcase_12 AC 137 ms
54,176 KB
testcase_13 AC 137 ms
53,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int[] f=new int[14];
		for(int i=0;i<5;i++){
			int a=sc.nextInt();
			f[a]++;
		}
		Arrays.sort(f);
//		for(int i=0;i<14;i++){
//			System.out.println(f[i]);
//		}
		if(f[13]==3&&f[12]==2){
			System.out.println("FULL HOUSE");
		}else if(f[13]==3){
			System.out.println("THREE CARD");
		}else if(f[13]==2&&f[12]==2){
			System.out.println("TWO PAIR");
		}else if(f[13]==2){
			System.out.println("ONE PAIR");
		}else{
			System.out.println("NO HAND");
		}
		
		
	}
}
0