結果
問題 | No.227 簡単ポーカー |
ユーザー | dazy |
提出日時 | 2017-02-27 16:48:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 136 ms / 5,000 ms |
コード長 | 1,266 bytes |
コンパイル時間 | 3,733 ms |
コンパイル使用メモリ | 78,260 KB |
実行使用メモリ | 41,424 KB |
最終ジャッジ日時 | 2024-06-11 19:28:06 |
合計ジャッジ時間 | 6,652 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,272 KB |
testcase_01 | AC | 134 ms
41,000 KB |
testcase_02 | AC | 129 ms
41,068 KB |
testcase_03 | AC | 129 ms
41,080 KB |
testcase_04 | AC | 131 ms
41,076 KB |
testcase_05 | AC | 130 ms
41,404 KB |
testcase_06 | AC | 130 ms
41,308 KB |
testcase_07 | AC | 130 ms
40,964 KB |
testcase_08 | AC | 132 ms
41,424 KB |
testcase_09 | AC | 133 ms
41,200 KB |
testcase_10 | AC | 136 ms
40,984 KB |
testcase_11 | AC | 133 ms
41,272 KB |
testcase_12 | AC | 127 ms
41,124 KB |
testcase_13 | AC | 129 ms
41,380 KB |
ソースコード
import java.util.*; public class Run { public static void main (String arg[]) { Scanner scan = new Scanner(System.in); String ans = "NO HAND"; int tmp; boolean one = false, two = false, three = false, full = false, bad = false; ArrayList<Integer> A = new ArrayList<>(); for (int i = 0; i < 5; i++) { tmp = scan.nextInt(); if (!A.contains(tmp)) A.add(tmp); else { tmp *= 100; if (!A.contains(tmp)) { if (!one) { A.add(tmp); one = true; } else { A.add(tmp); two = true; if (three) full = true; } } else { if (!two && three) bad = true; else if (one && !two) three = true; else if (one && two) full = true; } } } if (bad) ; else if (full) ans = "FULL HOUSE"; else if (three) ans = "THREE CARD"; else if (two) ans = "TWO PAIR"; else if (one) ans = "ONE PAIR"; else ; System.out.println(ans); } }