結果

問題 No.227 簡単ポーカー
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-12-03 01:00:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 2,095 bytes
コンパイル時間 3,354 ms
コンパイル使用メモリ 78,976 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-11-25 03:41:17
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,040 KB
testcase_01 AC 129 ms
53,980 KB
testcase_02 AC 129 ms
54,020 KB
testcase_03 AC 128 ms
54,420 KB
testcase_04 AC 127 ms
53,744 KB
testcase_05 AC 129 ms
53,984 KB
testcase_06 AC 125 ms
53,944 KB
testcase_07 AC 129 ms
54,380 KB
testcase_08 AC 128 ms
53,916 KB
testcase_09 AC 131 ms
53,860 KB
testcase_10 AC 131 ms
53,940 KB
testcase_11 AC 125 ms
54,024 KB
testcase_12 AC 114 ms
52,616 KB
testcase_13 AC 129 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.util.HashMap;

public class No227 {
  public static void main(String[] args) {
    
    Scanner sc = new Scanner(System.in);
    HashMap<String,Integer> cardMap = new HashMap<String,Integer>();
    
    for(int i =0;i < 5;i++){
      int card = sc.nextInt();
      if(cardMap.containsKey(Integer.toString(card))){
        cardMap.put(Integer.toString(card),cardMap.get(Integer.toString(card))+1);
      }else{
        cardMap.put(Integer.toString(card),1);
      }
    }
    sc.close();
    
    No227 obj =new No227();
    String hand = obj.judgeHand(cardMap);
    System.out.println(hand);
  }
  
  private String judgeHand(HashMap<String,Integer> cardMap){
    String FULL_HOUSE = "FULL HOUSE";//ある数をちょうど3つと、別の数をちょうど2つ含む。
    String THREE_CARD = "THREE CARD";//ある数をちょうど3つ含む。
    String TWO_PAIR = "TWO PAIR";//ある数をちょうど2つと、別の数をちょうど2つ含む。
    String ONE_PAIR = "ONE PAIR";//ある数をちょうど2つ含む。
    String NO_HAND = "NO HAND";//上記以外

    // for (String key : cardMap.keySet()){
    //   System.out.println(key + ":" + cardMap.get(key));
    // }
    HashMap<String,Integer> handMap =new HashMap<String,Integer>();
    for (String cardMapKey : cardMap.keySet()){
      String handMapKey = Integer.toString(cardMap.get(cardMapKey));
      if(cardMap.get(cardMapKey) >= 2){
        if (handMap.containsKey(handMapKey)){
          handMap.put(handMapKey,handMap.get(handMapKey)+1);
        }else{
          handMap.put(handMapKey,1);
        }
      }
    }

    if(handMap.size() == 0){
      return NO_HAND;
    }else{
      if(handMap.containsKey("3") && handMap.containsKey("2")){
        return FULL_HOUSE;
      }else if(handMap.containsKey("3")){
        return THREE_CARD;
      }else if(handMap.containsKey("2")){
        if (handMap.get("2") == 2){
          return TWO_PAIR;
        }else {
          return ONE_PAIR;
        }
      }else{
        return NO_HAND;
      }
    }
  }
}
0