結果
問題 | No.227 簡単ポーカー |
ユーザー | Taka |
提出日時 | 2016-04-06 14:59:55 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 981 bytes |
コンパイル時間 | 2,120 ms |
コンパイル使用メモリ | 77,684 KB |
実行使用メモリ | 41,304 KB |
最終ジャッジ日時 | 2024-10-04 02:15:33 |
合計ジャッジ時間 | 4,660 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 131 ms
41,300 KB |
testcase_02 | AC | 131 ms
41,260 KB |
testcase_03 | AC | 128 ms
41,152 KB |
testcase_04 | AC | 130 ms
41,216 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); int a1 = sc.nextInt(); int a2 = sc.nextInt(); int a3 = sc.nextInt(); int a4 = sc.nextInt(); int a5 = sc.nextInt(); int num[]; num = new int[5]; num[0]=a1; num[1]=a2; num[2]=a3; num[3]=a4; num[4]=a5; int a=0, b=0, c=0, d=0, e=0; for(int i=0; i<5; i++){ if(num[0]==num[i]){ a++; }else if(num[1]==num[i]){ b++; }else if(num[2]==num[i]){ c++; }else if(num[3]==num[i]){ d++; }else if(num[4]==num[i]){ e++; } } if(a==3 && b==2) System.out.println("FULL HOUSE"); else if(a==3) System.out.println("THREE CARD"); else if(a==2 && b==2) System.out.println("TWO PAIR"); else if(a==2) System.out.println("ONE PAIR"); else System.out.println("NO CARD"); } }