結果

問題 No.227 簡単ポーカー
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-03 19:56:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 1,439 bytes
コンパイル時間 4,028 ms
コンパイル使用メモリ 80,376 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-07-18 01:07:39
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,928 KB
testcase_01 AC 133 ms
54,128 KB
testcase_02 AC 135 ms
54,256 KB
testcase_03 AC 136 ms
54,408 KB
testcase_04 AC 135 ms
54,168 KB
testcase_05 AC 133 ms
54,140 KB
testcase_06 AC 137 ms
54,412 KB
testcase_07 AC 136 ms
54,148 KB
testcase_08 AC 134 ms
54,180 KB
testcase_09 AC 137 ms
54,536 KB
testcase_10 AC 134 ms
54,396 KB
testcase_11 AC 138 ms
54,280 KB
testcase_12 AC 133 ms
54,276 KB
testcase_13 AC 135 ms
54,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0227 {
	
	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int[] a = new int[5];
		for (int i=0; i<5; i++) {
			a[i] = in.nextInt();
		}

		Arrays.sort(a);
		if ((a[0] == a[1] && a[1] == a[2] && a[2] == a[3] && a[3] == a[4])
			|| (a[1] == a[2] && a[2] == a[3] && a[3] == a[4])
			|| (a[0] == a[1] && a[1] == a[2] && a[2] == a[3])) {
			out.println("NO HAND");
		}else if ((a[0] == a[1] && a[1] == a[2] && a[3] == a[4])
			|| a[0] == a[1] && a[2] == a[3] && a[3] == a[4]) {
			out.println("FULL HOUSE");
		}else if ((a[0] == a[1] && a[1] == a[2])
			|| (a[1] == a[2] && a[2] == a[3])
			|| (a[2] == a[3] && a[3] == a[4])) {
			out.println("THREE CARD");
		}else if ((a[0] == a[1] && a[2] == a[3])
			|| (a[0] == a[1] && a[3] == a[4])
			|| (a[1] == a[2] && a[3] == a[4])) {
			out.println("TWO PAIR");
		}else if (a[0] == a[1] || a[1] == a[2] || a[2] == a[3] || a[3] == a[4]) {
			out.println("ONE PAIR");
		}else {
			out.println("NO HAND");
		}
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0