結果

問題 No.227 簡単ポーカー
ユーザー YatsukuYatsuku
提出日時 2015-11-11 17:09:44
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,329 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-13 14:26:17
合計ジャッジ時間 912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 RE -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |                 scanf("%d", &card[k1]);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	int card[6];
	int num[6] = {0};
	int tmp;
	int count = 1;
	int count1 = 0;
	int count2 = 0;
	int change = 0;
	int k1, k2;

	for ( k1 = 1; k1 <= 5; k1++ ) {
		scanf("%d", &card[k1]);
	}
	
	for ( k1 = 1; k1 < 5; k1++ ) {
		for ( k2 = 1; k2 < 5; k2++ ) {
			if ( card[k2] > card[k2+1] ) {
				tmp = card[k2];
				card[k2] = card[k2+1];
				card[k2+1] = tmp;
				change++;
			}	
		}
	}

	if ( change == 0 ) {
		puts("NO HAND");
		return 0;
	}
	for ( k1 = 1; k1 <= 5; k1++ ) {
		if ( k1 == 5 ) {
			if ( card[5] == card[4] ) {
				num[5] = count;
			} else {
				break;
			}
		}
		if ( card[k1] == card[k1+1] ) {
			num[k1] = count;
		} else if ( card[k1] != card[k1+1] ) {
			if ( card[k1] == card[k1-1] ) {
				num[k1] = count;
				count++;
			} else if ( card[k1] != card[k1-1] ) {
				continue;
			}
		}
	}
	for ( k1 = 1; k1 <= 5; k1++ ) {
		if ( num[k1] == 1 ) {
			count1++;	
		} else if ( num[k1] == 2 ) {
			count2++;
		}
	}
	if ( count1 == 0 ) {
		if ( count2 == 0 ) {
			puts("NO HAND");
		} 
	}


	if ( count1 == 3 ) {
		if (count2 == 2 ) {
			puts("FULL HOUSE");
		} else {
			puts("THREE CARD");
		}
	}

	if ( count1 == 2 && count2 == 2 ) {
		puts("TWO PAIR");
	}
	if ( count1 == 2 && count2 == 0 ) {
		puts("ONE PAIR");
	}

	if ( count1 == 5 ) {
		puts("NO HAND");
	}

	return 0;
}
0