結果

問題 No.227 簡単ポーカー
ユーザー キョウチクキョウチク
提出日時 2022-05-17 20:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 4,242 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-09-15 15:46:41
合計ジャッジ時間 6,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,416 KB
testcase_01 AC 124 ms
41,116 KB
testcase_02 AC 124 ms
41,128 KB
testcase_03 AC 125 ms
41,324 KB
testcase_04 AC 127 ms
41,224 KB
testcase_05 AC 124 ms
41,244 KB
testcase_06 AC 125 ms
41,048 KB
testcase_07 AC 124 ms
41,236 KB
testcase_08 AC 125 ms
41,100 KB
testcase_09 AC 124 ms
41,328 KB
testcase_10 AC 122 ms
41,100 KB
testcase_11 AC 111 ms
40,216 KB
testcase_12 AC 125 ms
41,152 KB
testcase_13 AC 126 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    int n=5;
    String[] line;
    line=sc.nextLine().split(" ");
    int[] cards=new int[14];
    for(int i=0;i<n;i++) cards[Integer.parseInt(line[i])]++;
    Arrays.sort(cards);
    if(cards[12]<2){
      if(cards[13]<2||3<cards[13]){
        System.out.println("NO HAND");
      }else if(cards[13]<3){
        System.out.println("ONE PAIR");
      }else{
        System.out.println("THREE CARD");
      }
    }else{
      if(cards[13]<3){
        System.out.println("TWO PAIR");
      }else{
        System.out.println("FULL HOUSE");
      }
    }
    sc.close();
  }
}
0