結果

問題 No.227 簡単ポーカー
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-14 14:24:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 624 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-11-17 14:27:50
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,472 KB
testcase_01 AC 124 ms
41,004 KB
testcase_02 AC 122 ms
41,020 KB
testcase_03 AC 126 ms
41,340 KB
testcase_04 AC 125 ms
41,276 KB
testcase_05 AC 121 ms
41,080 KB
testcase_06 AC 124 ms
41,180 KB
testcase_07 AC 110 ms
39,924 KB
testcase_08 AC 124 ms
41,020 KB
testcase_09 AC 112 ms
40,328 KB
testcase_10 AC 139 ms
41,596 KB
testcase_11 AC 118 ms
41,348 KB
testcase_12 AC 122 ms
41,044 KB
testcase_13 AC 123 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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