結果

問題 No.227 簡単ポーカー
ユーザー しのっちしのっち
提出日時 2019-05-09 13:16:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 31,100 KB
実行使用メモリ 31,436 KB
最終ジャッジ日時 2024-07-02 00:48:22
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,028 KB
testcase_01 AC 43 ms
31,152 KB
testcase_02 AC 42 ms
30,804 KB
testcase_03 AC 41 ms
31,124 KB
testcase_04 AC 41 ms
31,064 KB
testcase_05 AC 42 ms
30,916 KB
testcase_06 AC 42 ms
31,164 KB
testcase_07 AC 41 ms
31,252 KB
testcase_08 AC 42 ms
31,292 KB
testcase_09 AC 41 ms
30,996 KB
testcase_10 AC 42 ms
31,280 KB
testcase_11 AC 41 ms
31,232 KB
testcase_12 AC 41 ms
31,436 KB
testcase_13 AC 41 ms
30,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$hand = explode(" ", trim(fgets(STDIN)));
$card_count = array_count_values($hand);

$pair_count = 0;
$three_card_count = 0;

foreach ($card_count as $key => $num) {
  if ($num == 2) $pair_count++;
  if ($num == 3) $three_card_count++;
}

if ($three_card_count == 1 && $pair_count == 1) echo "FULL HOUSE\n";
elseif ($three_card_count == 1 && $pair_count == 0) echo "THREE CARD\n";
elseif ($pair_count == 2) echo "TWO PAIR\n";
elseif ($pair_count == 1) echo "ONE PAIR\n";
else echo "NO HAND\n";
0