結果
| 問題 |
No.227 簡単ポーカー
|
| コンテスト | |
| ユーザー |
tsukacchan
|
| 提出日時 | 2016-03-28 10:57:23 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 557 bytes |
| コンパイル時間 | 302 ms |
| コンパイル使用メモリ | 21,120 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-02 05:55:41 |
| 合計ジャッジ時間 | 749 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
コンパイルメッセージ
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]);
| ^~~~~~~~~~~~~~~~~
ソースコード
#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;
}
tsukacchan