結果
問題 | No.227 簡単ポーカー |
ユーザー | しめはじめ |
提出日時 | 2019-07-29 12:01:54 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 801 bytes |
コンパイル時間 | 456 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 15:15:06 |
合計ジャッジ時間 | 926 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,948 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
ソースコード
#include <stdio.h> int main(void){ int a[5]; int card[14]; int three_cnt = 0; int two_cnt = 0; scanf( "%d %d %d %d %d", &a[0], &a[1], &a[2], &a[3], &a[4] ); for( int i = 1; i <= 13; i++ ){ card[i] = 0; } for( int i = 0; i < 5; i++ ){ card[a[i]]++; } for( int i = 1; i <= 13; i++ ){ if( card[i] == 3 ){ three_cnt++; }else if( card[i] == 2 ){ two_cnt++; } } if( three_cnt == 1 && two_cnt == 1 ){ printf( "FULL HOUSE\n" ); }else if( three_cnt == 1 && two_cnt == 0 ){ printf( "THREE CARD\n" ); }else if( two_cnt == 2 ){ printf( "TWO PAIR\n" ); }else if( two_cnt == 1 ){ printf( "ONE PAIR\n" ); }else{ printf( "NO HAND\n" ); } }