結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,424 KB
testcase_01 AC 314 ms
51,740 KB
testcase_02 AC 311 ms
51,408 KB
testcase_03 AC 311 ms
51,688 KB
testcase_04 AC 315 ms
51,420 KB
testcase_05 AC 311 ms
51,744 KB
testcase_06 AC 309 ms
51,568 KB
testcase_07 AC 309 ms
51,836 KB
testcase_08 WA -
testcase_09 AC 309 ms
51,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

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

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