結果
問題 | No.227 簡単ポーカー |
ユーザー | pengin_2000 |
提出日時 | 2019-07-10 16:10:57 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 657 bytes |
コンパイル時間 | 376 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 15:36:46 |
合計ジャッジ時間 | 854 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 0 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
ソースコード
#include<stdio.h> int main() { int a; int i; int count[16]; for (i = 0; i < 16; i++) count[i] = 0; for (i = 0; i < 5; i++) { scanf("%d", &a); count[a]++; } for (i = 0; i < 15; i++) { if (count[i] < count[i + 1]) { count[i] ^= count[i + 1]; count[i + 1] ^= count[i]; count[i] ^= count[i + 1]; if (i > 0) i -= 2; } } if (count[0] == 3 && count[1] == 2) printf("FULL HOUSE\n"); else if (count[0] == 3 && count[1] == 1) printf("THREE CARD\n"); else if (count[0] == 2 && count[1] == 2) printf("TWO PAIR\n"); else if (count[0] == 2 && count[1] == 1) printf("ONE PAIR\n"); else printf("NO HAND\n"); return 0; }