結果

問題 No.227 簡単ポーカー
ユーザー tsukacchantsukacchan
提出日時 2016-03-28 10:57:23
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 04:28:25
合計ジャッジ時間 807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 0 ms
6,944 KB
testcase_05 AC 0 ms
6,944 KB
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 0 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 0 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 | for(i=0;i<5;i++)        scanf("%d",&A[i]);
      |                         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(void){

int i,j;
int A[5];
int counter[13];
int one_pair=0,three_card=0;

for(i=0;i<5;i++)	scanf("%d",&A[i]);

for(i=0;i<13;i++)	counter[i]=0;

for(i=0;i<5;i++){
for(j=0;j<13;j++){
	
if(A[i]==j+1)
counter[j]++;

}
}

for(i=0;i<13;i++){

if(counter[i]==2)	one_pair++;
else if(counter[i]==3)	three_card++;

}


if(three_card==1 && one_pair==1)	printf("FULL HOUSE");

else if(three_card==1)	printf("THREE CARD");
else if(one_pair==2)	printf("TWO PAIR");
else if(one_pair==1)	printf("ONE PAIR");
else	printf("NO HAND");

return 0;

}
0