結果

問題 No.227 簡単ポーカー
ユーザー omc-testomc-test
提出日時 2016-08-03 15:53:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-11-06 23:43:42
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,368 KB
testcase_01 AC 130 ms
40,984 KB
testcase_02 AC 118 ms
40,256 KB
testcase_03 AC 133 ms
41,104 KB
testcase_04 AC 133 ms
41,328 KB
testcase_05 AC 134 ms
41,188 KB
testcase_06 AC 132 ms
41,380 KB
testcase_07 AC 132 ms
40,964 KB
testcase_08 AC 129 ms
41,272 KB
testcase_09 AC 134 ms
40,924 KB
testcase_10 AC 133 ms
40,992 KB
testcase_11 AC 132 ms
41,264 KB
testcase_12 AC 132 ms
41,232 KB
testcase_13 AC 135 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int count[] = new int[13];
		for(int i=0; i<5; i++){
			count[sc.nextInt()-1]++;
		}
		sc.close();
		String yaku[] = {"NO HAND", "ONE PAIR", "TWO PAIR", "THREE CARD", "FULL HOUSE"};

		int no = 0;
		for(int i=0; i<13; i++){
			if(count[i] == 2){
				no++;
			}
			if(count[i] == 3){
				no+=3;
			}
		}
		System.out.println(yaku[no]);
	}
}
0