結果

問題 No.227 簡単ポーカー
ユーザー 👑 obakyanobakyan
提出日時 2019-03-23 15:56:03
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 5,272 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-23 20:59:38
合計ジャッジ時間 1,221 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 1 ms
4,348 KB
testcase_12 AC 1 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d, e = io.read("*n", "*n", "*n", "*n", "*n")
c = {a,b,c,d,e}
t = {0, 0, 0}
for i = 1, 13, 1 do
    sum = 0
    for k, v in pairs(c) do
        if(v == i) then sum = sum + 1 end
    end
    if(1 <= sum and sum <= 3) then
        t[sum] = t[sum] + 1
    end
end
if(t[3] == 1) then
    if(t[2] == 1) then
        io.write("FULL HOUSE")
    else
        io.write("THREE CARD")
    end
elseif(t[2] == 2) then
    io.write("TWO PAIR")
elseif(t[2] == 1) then
    io.write("ONE PAIR")
else
    io.write("NO HAND")
end
0