結果
問題 | No.227 簡単ポーカー |
ユーザー | kou6839 |
提出日時 | 2015-06-20 01:04:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,175 bytes |
コンパイル時間 | 2,353 ms |
コンパイル使用メモリ | 78,316 KB |
実行使用メモリ | 54,404 KB |
最終ジャッジ日時 | 2024-07-07 04:33:17 |
合計ジャッジ時間 | 4,637 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 116 ms
54,188 KB |
testcase_02 | AC | 121 ms
54,404 KB |
testcase_03 | AC | 113 ms
54,192 KB |
testcase_04 | AC | 114 ms
54,076 KB |
testcase_05 | AC | 114 ms
54,092 KB |
testcase_06 | WA | - |
testcase_07 | AC | 114 ms
53,964 KB |
testcase_08 | WA | - |
testcase_09 | AC | 117 ms
53,896 KB |
testcase_10 | AC | 99 ms
52,708 KB |
testcase_11 | AC | 115 ms
54,020 KB |
testcase_12 | AC | 103 ms
53,112 KB |
testcase_13 | AC | 103 ms
53,432 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.ArrayList; import java.util.Arrays; public class Main { public static void main(String[] args){ // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); int[] hand = new int[5]; for(int i=0;i<5;i++) hand[i]=sc.nextInt(); Arrays.sort(hand); if(hand[0]==hand[1]&&hand[1]==hand[2] && hand[3]==hand[4] &&hand[0]!=hand[3]|| hand[0]==hand[1] && hand[2]==hand[3] &&hand[3]==hand[4]&&hand[0]!=hand[3]){ System.out.println("FULL HOUSE"); return; } if(hand[0]==hand[1] && hand[1]==hand[2] &&hand[0]!=hand[3] && hand[0]!=hand[4]|| hand[4]==hand[3] && hand[3]==hand[2]&&hand[4]!=hand[1]&&hand[4]!=hand[0]){ System.out.println("THREE CARD"); return; } if(hand[0]==hand[1] && hand[2]==hand[3] || hand[0]==hand[1]&&hand[3]==hand[4]||hand[1]==hand[2]&&hand[3]==hand[4]){ System.out.println("TWO PAIR"); return; } if(hand[0]==hand[1] || hand[1]==hand[2] || hand[2]==hand[3]||hand[3]==hand[4]){ System.out.println("ONE PAIR"); return; } System.out.println("NO HAND"); } }