結果

問題 No.227 簡単ポーカー
ユーザー yun_appyun_app
提出日時 2016-05-12 00:38:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 1,146 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 50,224 KB
最終ジャッジ日時 2024-10-05 13:52:23
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,964 KB
testcase_01 AC 53 ms
50,224 KB
testcase_02 AC 52 ms
50,056 KB
testcase_03 AC 53 ms
50,092 KB
testcase_04 AC 52 ms
50,144 KB
testcase_05 AC 52 ms
50,052 KB
testcase_06 AC 52 ms
49,764 KB
testcase_07 AC 51 ms
50,120 KB
testcase_08 AC 68 ms
49,984 KB
testcase_09 AC 52 ms
50,124 KB
testcase_10 AC 52 ms
50,168 KB
testcase_11 AC 52 ms
49,692 KB
testcase_12 AC 54 ms
50,016 KB
testcase_13 AC 52 ms
49,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        int[] cards = new int[13];
        cards[Integer.parseInt(lines[0])-1]++;
        cards[Integer.parseInt(lines[1])-1]++;
        cards[Integer.parseInt(lines[2])-1]++;
        cards[Integer.parseInt(lines[3])-1]++;
        cards[Integer.parseInt(lines[4])-1]++;
        
        int two = 0;
        int three = 0;
        for(int n:cards){
            if(n==2){
                two++;
            }else if(n==3){
                three++;
            }
        }
        if(three==1 && two==1){
            System.out.println("FULL HOUSE");
        }else if(three==1){
            System.out.println("THREE CARD");
        }else if(two==2){
            System.out.println("TWO PAIR");
        }else if(two==1){
            System.out.println("ONE PAIR");
        }else{
            System.out.println("NO HAND");
        }
        
    }
}
0