結果

問題 No.227 簡単ポーカー
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-22 16:35:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-10-02 12:18:48
合計ジャッジ時間 4,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,708 KB
testcase_01 AC 132 ms
53,936 KB
testcase_02 AC 131 ms
53,976 KB
testcase_03 AC 129 ms
54,036 KB
testcase_04 AC 116 ms
52,960 KB
testcase_05 AC 129 ms
54,172 KB
testcase_06 AC 125 ms
53,868 KB
testcase_07 AC 126 ms
54,168 KB
testcase_08 AC 130 ms
54,472 KB
testcase_09 AC 131 ms
53,996 KB
testcase_10 AC 129 ms
54,084 KB
testcase_11 AC 130 ms
53,960 KB
testcase_12 AC 131 ms
54,172 KB
testcase_13 AC 127 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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