結果
問題 | No.227 簡単ポーカー |
ユーザー | rf141 |
提出日時 | 2015-06-28 22:50:44 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 111 ms / 5,000 ms |
コード長 | 1,796 bytes |
コンパイル時間 | 3,021 ms |
コンパイル使用メモリ | 77,812 KB |
実行使用メモリ | 41,668 KB |
最終ジャッジ日時 | 2024-07-07 20:56:27 |
合計ジャッジ時間 | 5,512 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
40,960 KB |
testcase_01 | AC | 107 ms
41,012 KB |
testcase_02 | AC | 105 ms
41,460 KB |
testcase_03 | AC | 108 ms
40,980 KB |
testcase_04 | AC | 98 ms
40,328 KB |
testcase_05 | AC | 105 ms
41,144 KB |
testcase_06 | AC | 107 ms
41,368 KB |
testcase_07 | AC | 106 ms
41,668 KB |
testcase_08 | AC | 111 ms
41,344 KB |
testcase_09 | AC | 108 ms
41,288 KB |
testcase_10 | AC | 98 ms
40,040 KB |
testcase_11 | AC | 107 ms
41,436 KB |
testcase_12 | AC | 99 ms
40,132 KB |
testcase_13 | AC | 106 ms
41,216 KB |
ソースコード
import java.util.*; public class EasyPorker { public static void main(String[] args){ Scanner scan = new Scanner(System.in); int[] card = new int[5]; for(int i=0;i<5;i++){ card[i]=scan.nextInt(); } Map<Integer,Integer> cardNum = new HashMap<Integer,Integer>(); int count=0; for(int i=0; i < 5; i++){ if(!cardNum.containsKey(card[i])){ cardNum.put(card[i], 1); }else{ int getNum = cardNum.get(card[i]); getNum++; cardNum.put(card[i], getNum); } } System.out.println(checkHands(cardNum)); } public static String checkHands(Map<Integer, Integer> cardNum){ boolean check_two=false,check_three=false,check_full=false; boolean check_two2=false,check_three2=false,check_full2=false; boolean e=false; switch(cardNum.size()){ case 5: return "NO HAND"; case 4: return "ONE PAIR"; case 3: for(int i = 1; i <= 13; i++){ if(cardNum.containsKey(i)){ int get = cardNum.get(i); if(get==2){ check_two=true; check_full=true; check_three=false; }else if(get==3){ check_three2=true; check_full2=true; check_two2=false; } } } if(check_two&&!check_two2)return "TWO PAIR"; if(!check_three&&check_three2)return "THREE CARD"; if(check_full&&check_full2)return "FULL HOUSE"; break; case 2: for(int i=1;i<=13;i++){ if(cardNum.containsKey(i)){ int get = cardNum.get(i); if(get==2){ check_full=true; check_three=false; }else if(get==3){ check_full2=true; check_three2=false; }else if(get==4){ e=true; } } } if(check_full&&check_full2)return "FULL HOUSE"; if(!check_three&&check_three2)return "THREE CARD"; if(e)return "NO HAND"; break; case 1: return "NO HAND"; } return null; } }