結果
問題 | No.227 簡単ポーカー |
ユーザー | suppy193 |
提出日時 | 2015-06-24 16:42:53 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 664 bytes |
コンパイル時間 | 569 ms |
コンパイル使用メモリ | 20,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 17:26:02 |
合計ジャッジ時間 | 621 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 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 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d", &a); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int i, count_pair, count_three; int a, card[14] = {0}; for(i = 0;i < 5;i++){ scanf("%d", &a); card[a]++; } count_pair = 0; count_three = 0; for(i = 1;i <= 13;i++){ switch(card[i]){ case 1: case 4: case 5: break; case 2: count_pair++; break; case 3: count_three++; break; default: break; } } if(count_three == 1 && count_pair == 1){ printf("FULL HOUSE\n"); } else if(count_three == 1){ printf("THREE CARD\n"); } else if(count_pair == 2){ printf("TWO PAIR\n"); } else if(count_pair == 1){ printf("ONE PAIR\n"); } else{ printf("NO HAND\n"); } return 0; }