結果

問題 No.1934 Four Fruits
ユーザー kotakota
提出日時 2022-05-17 16:46:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 13,875 ms
コンパイル使用メモリ 437,556 KB
実行使用メモリ 51,976 KB
最終ジャッジ日時 2024-09-15 11:31:04
合計ジャッジ時間 16,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
51,776 KB
testcase_01 AC 305 ms
51,480 KB
testcase_02 AC 326 ms
51,844 KB
testcase_03 AC 309 ms
51,656 KB
testcase_04 AC 310 ms
51,756 KB
testcase_05 AC 307 ms
51,488 KB
testcase_06 AC 304 ms
51,584 KB
testcase_07 AC 302 ms
51,976 KB
testcase_08 AC 318 ms
51,784 KB
testcase_09 AC 307 ms
51,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a,b,c) = readLine()!!.split(" ").map{it.toInt()}
    if (a == b && b == c) {
        println(a)
    } else if (a != b && b != c && a != c) {
        println(6 - (a + b + c))
    } else {
        if (a == b) {
            println(c)
        } else if (b == c) {
            println(a)
        } else if (a == c) {
            println(b)
        }
    }
}
0