結果

問題 No.1107 三善アクセント
ユーザー バカらっくバカらっく
提出日時 2022-02-14 10:40:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 12,277 ms
コンパイル使用メモリ 430,044 KB
実行使用メモリ 51,920 KB
最終ジャッジ日時 2024-06-29 06:09:56
合計ジャッジ時間 20,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
51,704 KB
testcase_01 AC 308 ms
51,612 KB
testcase_02 AC 305 ms
51,632 KB
testcase_03 AC 309 ms
51,604 KB
testcase_04 AC 304 ms
51,920 KB
testcase_05 AC 306 ms
51,764 KB
testcase_06 AC 307 ms
51,704 KB
testcase_07 AC 306 ms
51,528 KB
testcase_08 AC 309 ms
51,612 KB
testcase_09 AC 309 ms
51,620 KB
testcase_10 AC 306 ms
51,612 KB
testcase_11 AC 306 ms
51,688 KB
testcase_12 AC 303 ms
51,600 KB
testcase_13 AC 304 ms
51,524 KB
testcase_14 AC 311 ms
51,680 KB
testcase_15 AC 308 ms
51,668 KB
testcase_16 AC 309 ms
51,692 KB
testcase_17 AC 307 ms
51,716 KB
testcase_18 AC 306 ms
51,700 KB
testcase_19 AC 312 ms
51,632 KB
testcase_20 AC 305 ms
51,724 KB
testcase_21 AC 307 ms
51,860 KB
testcase_22 AC 305 ms
51,728 KB
testcase_23 AC 311 ms
51,496 KB
testcase_24 AC 307 ms
51,680 KB
testcase_25 AC 305 ms
51,744 KB
testcase_26 AC 304 ms
51,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    println(if(getAns()) "YES" else "NO")
}

fun getAns():Boolean {
    val (a,b,c,d) = readLine()!!.split(" ").map { it.toInt() }
    return a < b && c > d
}
0