結果
問題 | No.227 簡単ポーカー |
ユーザー | butsurizuki |
提出日時 | 2016-12-05 18:42:08 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 379 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 21,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 21:15:14 |
合計ジャッジ時間 | 814 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 0 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 | 0 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 | 1 ms
5,376 KB |
testcase_12 | AC | 0 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:31: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | for(i = 1;i <= 5;i++){scanf("%d",&s);a[s]++;} | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(void){ int a[16] = {0},i,p1=0,p2=0,s; for(i = 1;i <= 5;i++){scanf("%d",&s);a[s]++;} for(i = 1;i <= 13;i++){if(a[i] == 3){p1++;}else if(a[i] == 2){p2++;}} if(p1 && p2){printf("FULL HOUSE\n");} else if(p1){printf("THREE CARD\n");} else if(p2 == 2){printf("TWO PAIR\n");} else if(p2){printf("ONE PAIR\n");} else{printf("NO HAND\n");} return 0; }