結果

問題 No.227 簡単ポーカー
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 11:56:22
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,150 bytes
コンパイル時間 4,469 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 37,324 KB
最終ジャッジ日時 2024-05-01 13:05:05
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,796 KB
testcase_01 AC 59 ms
37,116 KB
testcase_02 AC 54 ms
37,228 KB
testcase_03 AC 54 ms
37,180 KB
testcase_04 AC 56 ms
36,916 KB
testcase_05 AC 60 ms
37,060 KB
testcase_06 AC 56 ms
37,164 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 55 ms
37,060 KB
testcase_10 AC 54 ms
37,260 KB
testcase_11 AC 53 ms
36,916 KB
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;

public class No227{
    public static void main(String[] args) throws IOException{
        String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
        int[] hand = new int[13];
        int[] strToInt = new int[str.length];
        for(int i=0; i < str.length; i++)  strToInt[i] = Integer.parseInt(str[i]);
        for(int i=0; i < str.length; i++)  hand[strToInt[i]]++;
        Arrays.sort(hand);
        reverse(hand);
        judge(hand);
    }
    
    public static void reverse(int[] a){
        int temp = 0;
        for(int i=0; i < a.length / 2; i++){
            temp = a[i];
            a[i] = a[a.length - 1 - i];
            a[a.length - 1 - i] = temp;
        }
    }
    
    public static void judge(int[] a){
        if(a[0] == 3){
            if(a[1] == 2) System.out.println("FULL HOUSE"); 
            else System.out.println("THREE CARD");
        }
        else if(a[0] == 2){
            if(a[1] == 2) System.out. println("TWO PAIR");
            else System.out.println("ONE PAIR");
        }
        else System.out.println("NO HAND");
    }
}
0