結果

問題 No.427 テレビ
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:09:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 11,162 ms
コンパイル使用メモリ 418,672 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2023-10-13 07:14:09
合計ジャッジ時間 15,123 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
52,940 KB
testcase_01 AC 285 ms
52,920 KB
testcase_02 AC 285 ms
54,148 KB
testcase_03 AC 286 ms
52,936 KB
testcase_04 AC 288 ms
54,680 KB
testcase_05 AC 291 ms
52,964 KB
testcase_06 AC 287 ms
52,932 KB
testcase_07 AC 293 ms
52,852 KB
testcase_08 AC 288 ms
52,924 KB
testcase_09 AC 286 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){val(h,w)=readLine()!!.split(" ").map{it.toInt()}
println(if (h>w){"TATE"}else{"YOKO"})}
0