結果
問題 | No.227 簡単ポーカー |
ユーザー | scache |
提出日時 | 2015-09-19 15:51:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 130 ms / 5,000 ms |
コード長 | 819 bytes |
コンパイル時間 | 3,618 ms |
コンパイル使用メモリ | 78,044 KB |
実行使用メモリ | 41,840 KB |
最終ジャッジ日時 | 2024-07-19 07:57:19 |
合計ジャッジ時間 | 5,668 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
41,216 KB |
testcase_01 | AC | 118 ms
41,100 KB |
testcase_02 | AC | 120 ms
41,108 KB |
testcase_03 | AC | 123 ms
41,492 KB |
testcase_04 | AC | 112 ms
39,832 KB |
testcase_05 | AC | 126 ms
41,036 KB |
testcase_06 | AC | 108 ms
39,924 KB |
testcase_07 | AC | 127 ms
41,312 KB |
testcase_08 | AC | 130 ms
41,840 KB |
testcase_09 | AC | 120 ms
41,136 KB |
testcase_10 | AC | 109 ms
40,284 KB |
testcase_11 | AC | 116 ms
41,304 KB |
testcase_12 | AC | 105 ms
40,140 KB |
testcase_13 | AC | 110 ms
39,988 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main227 { public static void main(String[] args) { Main227 p = new Main227(); } public Main227() { Scanner sc = new Scanner(System.in); int n = 5; int[] a = new int[n]; for(int i=0;i<n;i++){ a[i] = sc.nextInt(); } solve(a); } public void solve(int[] a) { int[] count = new int[13]; for(int i=0;i<a.length;i++){ count[a[i]-1]++; } Arrays.sort(count); int size = count.length; if(count[size-1]==3){ if(count[size-2]==2){ System.out.println("FULL HOUSE"); }else{ System.out.println("THREE CARD"); } }else if(count[size-1]==2){ if(count[size-2]==2){ System.out.println("TWO PAIR"); }else{ System.out.println("ONE PAIR"); } }else{ System.out.println("NO HAND"); } } }