結果

問題 No.227 簡単ポーカー
ユーザー zmirezzmirez
提出日時 2018-08-25 15:17:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 111,756 KB
実行使用メモリ 26,012 KB
最終ジャッジ日時 2024-06-26 04:00:04
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,680 KB
testcase_01 AC 25 ms
25,880 KB
testcase_02 AC 25 ms
23,820 KB
testcase_03 AC 27 ms
23,940 KB
testcase_04 AC 26 ms
21,936 KB
testcase_05 AC 24 ms
21,812 KB
testcase_06 AC 26 ms
25,980 KB
testcase_07 AC 26 ms
24,084 KB
testcase_08 AC 27 ms
26,008 KB
testcase_09 AC 25 ms
24,080 KB
testcase_10 AC 25 ms
23,984 KB
testcase_11 AC 25 ms
25,844 KB
testcase_12 AC 26 ms
26,012 KB
testcase_13 AC 25 ms
23,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program{
    static void Main(string[]args){
        string[]t=Console.ReadLine().Split(' ');
        int[]A=new int[t.Length];
        for(int i=0;i<t.Length;i++){
            A[i]=int.Parse(t[i]);
        }
        int count=0;
        for(int i=0;i<A.Length-1;i++){
            for(int j=i+1;j<A.Length;j++){
                if(A[i]==A[j]){
                    count++;
                }
            }
        }
        if(count==4){
            Console.WriteLine("FULL HOUSE");
        }else if(count==3){
            Console.WriteLine("THREE CARD");
        }else if(count==2){
            Console.WriteLine("TWO PAIR");
        }
        else if(count==1){
            Console.WriteLine("ONE PAIR");
        }else{
            Console.WriteLine("NO HAND");
        }
    }
}
0