結果
問題 | No.227 簡単ポーカー |
ユーザー | eagle |
提出日時 | 2022-06-14 10:31:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,291 bytes |
コンパイル時間 | 2,327 ms |
コンパイル使用メモリ | 77,760 KB |
実行使用メモリ | 54,464 KB |
最終ジャッジ日時 | 2024-10-02 03:35:52 |
合計ジャッジ時間 | 4,845 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,964 KB |
testcase_01 | AC | 127 ms
54,016 KB |
testcase_02 | AC | 129 ms
54,464 KB |
testcase_03 | AC | 129 ms
54,164 KB |
testcase_04 | AC | 130 ms
54,080 KB |
testcase_05 | AC | 130 ms
54,212 KB |
testcase_06 | AC | 134 ms
54,192 KB |
testcase_07 | AC | 131 ms
54,276 KB |
testcase_08 | AC | 131 ms
54,000 KB |
testcase_09 | AC | 130 ms
53,996 KB |
testcase_10 | AC | 136 ms
54,252 KB |
testcase_11 | AC | 115 ms
52,948 KB |
testcase_12 | AC | 130 ms
54,096 KB |
testcase_13 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); //与えられるカード int[] A = new int[5]; for(int i = 0; i < A.length; i++) { A[i] = sc.nextInt(); } //カードを昇順に並び替える Arrays.sort(A); //フルハウス判定 boolean three = false; //スリーカード判定 boolean pair = false; //ペア判定 boolean twoPair = false; //ツーペア判定 String ans; //先頭から順に同じカードの数を数える for(int i = 0; i < A.length - 1; i++) { int cnt = 1; for(int j = i + 1; j < A.length; j++) { if(A[i] == A[j]) { cnt++; } else { i = j - 1; break; } } //スリーカード判定 if(cnt >= 4) { break; } else if(cnt == 3) { three = true; //ペア判定 } else if(cnt == 2 && !pair){ pair = true; //ツーペア判定 } else if(cnt == 2 && pair) { twoPair = true; } } //役判定 if(three && pair) { ans = "FULL HOUSE"; } else if(three) { ans = "THREE CARD"; } else if(twoPair) { ans = "TWO PAIR"; } else if(pair) { ans = "ONE PAIR"; } else { ans = "NO HAND"; } System.out.println(ans); } }