結果
問題 | No.227 簡単ポーカー |
ユーザー | ほげ太郎 |
提出日時 | 2018-02-26 09:54:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,157 bytes |
コンパイル時間 | 1,793 ms |
コンパイル使用メモリ | 77,144 KB |
実行使用メモリ | 55,808 KB |
最終ジャッジ日時 | 2024-05-01 21:30:57 |
合計ジャッジ時間 | 4,030 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 114 ms
41,652 KB |
testcase_02 | WA | - |
testcase_03 | AC | 103 ms
41,156 KB |
testcase_04 | AC | 101 ms
41,048 KB |
testcase_05 | AC | 114 ms
41,288 KB |
testcase_06 | AC | 105 ms
41,096 KB |
testcase_07 | AC | 115 ms
41,380 KB |
testcase_08 | AC | 106 ms
41,368 KB |
testcase_09 | AC | 102 ms
41,324 KB |
testcase_10 | AC | 112 ms
41,500 KB |
testcase_11 | AC | 118 ms
41,248 KB |
testcase_12 | AC | 122 ms
41,216 KB |
testcase_13 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] a = new int[5]; for (int i = 0; i < 5; i++) a[i] = sc.nextInt(); for (int i = 0; i < a.length; i++) { for (int j = i + 1; j < a.length; j++) { if (a[i] > a[j]) { int tmp = a[i]; a[i] = a[j]; a[j] = tmp; } } } int match = 0; boolean three = false; for (int i = 0; i < a.length - 1; i++) { if (a[i] == a[i + 1]) { match += 1; three |= (a[i] + 2 < a.length) && (a[i] == a[i + 2]); } } if (match == 3) { System.out.println("FULL HOUSE"); } else if (three) { System.out.println("THREE CARD"); } else if (match == 2) { System.out.println("TWO PAIR"); } else if (match == 1) { System.out.println("ONE PAIR"); } else { System.out.println("NO HAND"); } } }