結果
問題 | No.227 簡単ポーカー |
ユーザー | a2011404 |
提出日時 | 2017-02-28 16:22:48 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 599 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 21,120 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-11 23:54:34 |
合計ジャッジ時間 | 928 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:9:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d%d%d%d%d",&a[0],&a[1],&a[2],&a[3],&a[4]); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int a[5], card[13]={0},C1=0,C3=0,i,j,n; scanf("%d%d%d%d%d",&a[0],&a[1],&a[2],&a[3],&a[4]); for(i=0;i<5;i++){ /*何のカードが何枚あるかcard配列に格納する*/ for(j=1;j<=13;j++){ if(a[i] == j) card[j-1]++; } } for(n=0;n<13;n++){ /*1pairと3cardの数をカウント*/ if(card[n] == 3) C3++; else if(card[n] == 2) C1++; } if(C3 == 1 && C1 ==1) printf("FULL HOUSE\n"); else if(C3 == 1) printf("THREE CARD\n"); else if(C1 == 2) printf("TWO PAIR\n"); else if(C1 == 1) printf("ONR PAIR\n"); else printf("NO HAND\n"); return 0; }