結果

問題 No.227 簡単ポーカー
ユーザー ococonomy1ococonomy1
提出日時 2018-09-08 14:24:43
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 1,106 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 28,436 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-22 08:23:12
合計ジャッジ時間 1,461 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

int main(void){
  int card[13];
  for(int i = 0; i < 13; i++)card[i] = 0;
  for(int i = 0; i < 5; i++){
    int c;
    scanf("%d",&c);
    card[c - 1]++;
  }
  int nohandChecker = 1;

  for(int i = 0; i < 13; i++){
    if(card[i] == 5 || card[i] == 4){
      nohandChecker = 0;
      printf("NO HAND\n");
      break;
    }

    else if(card[i] == 3){
      nohandChecker = 0;
      int checker = 0;
      for(int j = 0; j < 13; j++){
        if(card[j] == 2){
          printf("FULL HOUSE\n");
          checker = 1;
          break;
        }
      }
      if(checker == 0)printf("THREE CARD\n");
      break;
    }

    else if(card[i] == 2){
      nohandChecker = 0;
      int checker = 0;
      for(int j = 0; j < 13; j++){
        if(card[j] == 3){
          printf("FULL HOUSE");
          checker = 1;
          break;
        }
        if(card[j] == 2 && i != j){
          printf("TWO PAIR\n");
          checker = 1;
          break;
        }
      }
      if(checker == 0)printf("ONE PAIR");
      break;
    }
  }
  if(nohandChecker == 1)printf("NO HAND\n");
  return 0;
}
0