結果

問題 No.227 簡単ポーカー
ユーザー ImTabooImTaboo
提出日時 2024-11-17 15:27:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 344 ms / 5,000 ms
コード長 773 bytes
コンパイル時間 14,203 ms
コンパイル使用メモリ 440,948 KB
実行使用メモリ 55,124 KB
最終ジャッジ日時 2024-11-17 15:28:20
合計ジャッジ時間 20,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
54,884 KB
testcase_01 AC 338 ms
54,968 KB
testcase_02 AC 341 ms
55,072 KB
testcase_03 AC 333 ms
55,124 KB
testcase_04 AC 334 ms
54,960 KB
testcase_05 AC 337 ms
55,124 KB
testcase_06 AC 334 ms
54,964 KB
testcase_07 AC 336 ms
54,912 KB
testcase_08 AC 335 ms
54,964 KB
testcase_09 AC 336 ms
55,080 KB
testcase_10 AC 340 ms
54,932 KB
testcase_11 AC 344 ms
55,020 KB
testcase_12 AC 339 ms
55,048 KB
testcase_13 AC 342 ms
55,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://yukicoder.me/problems/no/227

fun main() {
    val a = readln().split(" ").map { it.toInt() }.sorted()
    val counts = mutableListOf(0, 0, 0, 0, 0)

    var prev = 0
    counts[0] = 1
    for(i in 1..4) {
       if (a[prev] == a[i]){
           counts[prev] += 1

       } else {
           prev = i
           counts[i] = 1
       }
    }

    var twoCount = 0
    var threeCount = 0
    for(i in 0..4) {
        if(counts[i] == 2) twoCount += 1
        else if(counts[i] == 3) threeCount += 1
    }

    when {
        threeCount == 1 && twoCount == 1 -> println("FULL HOUSE")
        threeCount == 1 -> println("THREE CARD")
        twoCount == 2 -> println("TWO PAIR")
        twoCount == 1 -> println("ONE PAIR")
        else -> println("NO HAND")
    }
}
0