結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー バカらっくバカらっく
提出日時 2022-02-04 09:59:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 11,937 ms
コンパイル使用メモリ 436,660 KB
実行使用メモリ 52,040 KB
最終ジャッジ日時 2024-06-11 10:03:36
合計ジャッジ時間 23,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
51,840 KB
testcase_01 AC 279 ms
51,672 KB
testcase_02 AC 275 ms
51,704 KB
testcase_03 AC 281 ms
51,908 KB
testcase_04 AC 276 ms
51,980 KB
testcase_05 AC 269 ms
51,692 KB
testcase_06 AC 274 ms
51,780 KB
testcase_07 AC 285 ms
51,788 KB
testcase_08 AC 275 ms
51,840 KB
testcase_09 AC 284 ms
51,700 KB
testcase_10 AC 296 ms
51,796 KB
testcase_11 AC 279 ms
51,824 KB
testcase_12 AC 272 ms
51,948 KB
testcase_13 AC 283 ms
51,704 KB
testcase_14 AC 273 ms
51,724 KB
testcase_15 AC 275 ms
51,700 KB
testcase_16 AC 276 ms
51,692 KB
testcase_17 AC 280 ms
51,972 KB
testcase_18 AC 279 ms
51,824 KB
testcase_19 AC 277 ms
51,816 KB
testcase_20 AC 284 ms
52,028 KB
testcase_21 AC 283 ms
52,040 KB
testcase_22 AC 295 ms
51,732 KB
testcase_23 AC 287 ms
51,832 KB
testcase_24 AC 279 ms
51,908 KB
testcase_25 AC 285 ms
51,984 KB
testcase_26 AC 297 ms
51,852 KB
testcase_27 AC 269 ms
51,828 KB
testcase_28 AC 274 ms
51,704 KB
testcase_29 AC 267 ms
51,832 KB
testcase_30 AC 279 ms
51,740 KB
testcase_31 AC 276 ms
51,852 KB
testcase_32 AC 283 ms
51,692 KB
testcase_33 AC 281 ms
52,024 KB
testcase_34 AC 278 ms
51,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val inpt = readLine()!!.split(" ")
    val (s,t) = inpt.dropLast(1).map { it.toInt() }
    val ans = when(inpt.last()[0]) {
        '<' -> {
            s < t
        }
        '>' -> {
            s > t
        }
        else -> {
            s == t
        }
    }
    println(if(ans) "YES" else "NO")
}
0