結果

問題 No.427 テレビ
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:09:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 11,087 ms
コンパイル使用メモリ 429,604 KB
実行使用メモリ 51,864 KB
最終ジャッジ日時 2024-09-15 04:29:58
合計ジャッジ時間 15,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
51,836 KB
testcase_01 AC 311 ms
51,840 KB
testcase_02 AC 307 ms
51,704 KB
testcase_03 AC 312 ms
51,680 KB
testcase_04 AC 312 ms
51,564 KB
testcase_05 AC 306 ms
51,692 KB
testcase_06 AC 305 ms
51,704 KB
testcase_07 AC 306 ms
51,864 KB
testcase_08 AC 303 ms
51,800 KB
testcase_09 AC 310 ms
51,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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