結果

問題 No.427 テレビ
ユーザー minokasagominokasago
提出日時 2019-11-01 18:15:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 11,145 ms
コンパイル使用メモリ 426,420 KB
実行使用メモリ 51,760 KB
最終ジャッジ日時 2024-09-14 22:47:51
合計ジャッジ時間 15,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
51,576 KB
testcase_01 AC 312 ms
51,680 KB
testcase_02 AC 318 ms
51,760 KB
testcase_03 AC 313 ms
51,704 KB
testcase_04 AC 312 ms
51,664 KB
testcase_05 AC 312 ms
51,660 KB
testcase_06 AC 312 ms
51,620 KB
testcase_07 AC 311 ms
51,644 KB
testcase_08 AC 313 ms
51,756 KB
testcase_09 AC 310 ms
51,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

fun main()
{
    val (H, W) = readLine()!!.split(" ").map(String::toInt)

    if (H%4 == 0 && H/4*3 == W) {
        println("TATE")
    } else {
        println("YOKO")
    }
}
0