結果
問題 | No.227 簡単ポーカー |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-30 17:20:04 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 69 ms / 5,000 ms |
コード長 | 1,430 bytes |
コンパイル時間 | 2,608 ms |
コンパイル使用メモリ | 87,896 KB |
実行使用メモリ | 38,228 KB |
最終ジャッジ日時 | 2024-09-13 23:50:50 |
合計ジャッジ時間 | 4,284 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 69 ms
37,940 KB |
testcase_01 | AC | 65 ms
37,624 KB |
testcase_02 | AC | 66 ms
37,496 KB |
testcase_03 | AC | 68 ms
37,772 KB |
testcase_04 | AC | 67 ms
37,684 KB |
testcase_05 | AC | 65 ms
38,056 KB |
testcase_06 | AC | 63 ms
37,796 KB |
testcase_07 | AC | 66 ms
37,844 KB |
testcase_08 | AC | 66 ms
37,772 KB |
testcase_09 | AC | 64 ms
37,624 KB |
testcase_10 | AC | 65 ms
37,524 KB |
testcase_11 | AC | 65 ms
37,916 KB |
testcase_12 | AC | 67 ms
37,968 KB |
testcase_13 | AC | 66 ms
38,228 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.stream.Stream; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String[] inputs = reader.readLine().split(" "); int[] cards = Stream.of(inputs).mapToInt(Integer::parseInt).toArray(); int[] table = new int[13]; for (int i = 0; i < 5; i++) { table[cards[i] - 1] += 1; } tellPokerHands(table); } private static void tellPokerHands(int[] table) { List<Integer> pairs = new ArrayList<>(); int triple = -1; for (int i = 0; i < 13; i++) { if (table[i] == 3) { triple = i; } else if (table[i] == 2) { pairs.add(i); } } if(triple!=-1 && pairs.size()==1) { System.out.println("FULL HOUSE"); } else if (triple != -1) { System.out.println("THREE CARD"); } else if (pairs.size()==2){ System.out.println("TWO PAIR"); } else if (pairs.size()==1){ System.out.println("ONE PAIR"); } else { System.out.println("NO HAND"); } } }