結果
問題 | No.227 簡単ポーカー |
ユーザー | nc_research |
提出日時 | 2021-10-04 17:43:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 112 ms / 5,000 ms |
コード長 | 2,331 bytes |
コンパイル時間 | 4,584 ms |
コンパイル使用メモリ | 80,144 KB |
実行使用メモリ | 41,560 KB |
最終ジャッジ日時 | 2024-07-22 18:02:59 |
合計ジャッジ時間 | 5,557 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
41,184 KB |
testcase_01 | AC | 109 ms
41,196 KB |
testcase_02 | AC | 109 ms
41,164 KB |
testcase_03 | AC | 111 ms
41,040 KB |
testcase_04 | AC | 98 ms
40,092 KB |
testcase_05 | AC | 112 ms
41,276 KB |
testcase_06 | AC | 98 ms
40,232 KB |
testcase_07 | AC | 91 ms
39,388 KB |
testcase_08 | AC | 98 ms
40,284 KB |
testcase_09 | AC | 109 ms
41,560 KB |
testcase_10 | AC | 107 ms
41,276 KB |
testcase_11 | AC | 107 ms
41,196 KB |
testcase_12 | AC | 105 ms
41,024 KB |
testcase_13 | AC | 97 ms
40,380 KB |
ソースコード
package com.mycompany.app; import java.util.Scanner; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.HashMap; public class App { public static ArrayList<Integer> calcAndSortCountList(ArrayList<Integer> values){ // val -> count HashMap<Integer, Integer> count = new HashMap<Integer, Integer>(); for(Integer val : values){ if(count.containsKey(val)){ count.put(val, count.get(val) + 1); }else{ count.put(val,1); } } // カードの出現回数のみをリストに格納し,降順ソートする ArrayList<Integer> count_list = new ArrayList(count.values()); Collections.sort(count_list); Collections.reverse(count_list); return count_list; } public static String judgeHand(ArrayList<Integer> hand){ String full_house = "FULL HOUSE"; String three_card = "THREE CARD"; String two_pair = "TWO PAIR"; String one_pair = "ONE PAIR"; String no_hand = "NO HAND"; ArrayList<Integer> count = calcAndSortCountList(hand); // 1. No Handsの判定 int max_freq_num = count.get(0); if((max_freq_num > 3) || (max_freq_num < 2)) return no_hand; // 2. 他の判定 int second_freq_num = count.get(1); if(max_freq_num == 3){ if(second_freq_num == 2) return full_house; return three_card; }else{ if(second_freq_num == 2) return two_pair; return one_pair; } } // strをseparatorで分割してArrayList<Integer>へ変換 public static ArrayList<Integer> splitToArrayList(String str, String separator){ ArrayList<Integer> ans = new ArrayList<Integer>(); String[] separated_str = str.split(" "); for(int i = 0; i < separated_str.length; i++){ ans.add(Integer.valueOf(separated_str[i])); } return ans; } public static void main( String[] args ) { Scanner scan = new Scanner(System.in); String first_line = scan.nextLine(); scan.close(); ArrayList<Integer> hands = splitToArrayList(first_line," "); System.out.println(judgeHand(hands)); } }