結果

問題 No.227 簡単ポーカー
ユーザー kachipankachipan
提出日時 2023-06-23 16:53:24
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 29,760 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-13 11:48:29
合計ジャッジ時間 1,582 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>

int main()
{
	int card[13] = { 0 };
	int w = 0;
	int single = 0;
	int three = 0;

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

	for (int i = 0;i < 13;i++)
	{
		if (card[i] == 1)
		{
			single++;
		}
		else if (card[i] == 2)
		{
			w++;
		}
		else if (card[i] == 3)
		{
			three++;
		}
	}

	if (w == 1 && single == 3)
	{
		printf("ONE PAIR\n");
	}
	else if (w == 2 && single == 1)
	{
		printf("TWO PAIR\n");
	}
	else if (three == 1 && single == 2)
	{
		printf("THREE CARD\n");
	}
	else if (three == 1 && w == 1)
	{
		printf("FULL HOUSE\n");
	}
	else
	{
		printf("NO HAND\n");
	}
}

0