結果

問題 No.227 簡単ポーカー
ユーザー Ruizi_LuigiRuizi_Luigi
提出日時 2015-08-04 14:01:44
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 3,008 ms
コンパイル使用メモリ 30,800 KB
実行使用メモリ 31,636 KB
最終ジャッジ日時 2024-07-18 01:14:46
合計ジャッジ時間 1,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,996 KB
testcase_01 AC 41 ms
31,396 KB
testcase_02 AC 41 ms
31,560 KB
testcase_03 AC 41 ms
31,192 KB
testcase_04 AC 41 ms
31,540 KB
testcase_05 AC 42 ms
31,212 KB
testcase_06 AC 42 ms
31,024 KB
testcase_07 AC 42 ms
31,284 KB
testcase_08 AC 41 ms
31,636 KB
testcase_09 AC 42 ms
31,548 KB
testcase_10 AC 41 ms
31,232 KB
testcase_11 AC 41 ms
31,076 KB
testcase_12 AC 40 ms
31,108 KB
testcase_13 AC 41 ms
31,268 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$a_list = explode(' ', trim(fgets(STDIN)));

$result = array_count_values(array_count_values($a_list));
if ((array_key_exists(2, $result) && $result[2] == 1) && (array_key_exists(3, $result) && $result[3] == 1)) {
  echo "FULL HOUSE";
} else if (array_key_exists(2, $result) && $result[2] == 2) {
  echo "TWO PAIR";
} else if (array_key_exists(3, $result) && $result[3] == 1) {
  echo "THREE CARD";
} else if (array_key_exists(2, $result) && $result[2] == 1) {
  echo "ONE PAIR";
} else {
  echo "NO HAND";
}
0