結果

問題 No.227 簡単ポーカー
ユーザー UK_kkbjUK_kkbj
提出日時 2017-06-20 18:23:47
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 07:35:18
合計ジャッジ時間 726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(){
  int v[5],i;
  for(i = 0; i < 5; i++)
    scanf("%d",&v[i]);
  int t, j, c;
  for(t = 0; t < 5; t++){
    for(j = 5; t < j; j--){
      if(v[t] == v[j]){
        c++;
      }
    }
  }
  switch(c){
    case 0:printf("NO HAND"); break;
    case 1:printf("ONE PAIR"); break;
    case 2:printf("TWO PAIR"); break;
    case 3:printf("THREE CARD"); break;
    case 4:printf("FULL HOUSE"); break;
    default :printf("NO HAND"); break;
  }
  return 0;
}
0