結果

問題 No.441 和か積
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-08 00:44:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 298 ms / 1,000 ms
コード長 225 bytes
コンパイル時間 12,477 ms
コンパイル使用メモリ 434,832 KB
実行使用メモリ 57,156 KB
最終ジャッジ日時 2024-06-08 07:19:01
合計ジャッジ時間 23,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
57,012 KB
testcase_01 AC 276 ms
56,740 KB
testcase_02 AC 279 ms
56,836 KB
testcase_03 AC 294 ms
56,888 KB
testcase_04 AC 284 ms
57,016 KB
testcase_05 AC 286 ms
56,824 KB
testcase_06 AC 276 ms
56,736 KB
testcase_07 AC 285 ms
56,792 KB
testcase_08 AC 282 ms
56,816 KB
testcase_09 AC 278 ms
56,836 KB
testcase_10 AC 276 ms
56,856 KB
testcase_11 AC 287 ms
56,940 KB
testcase_12 AC 286 ms
57,004 KB
testcase_13 AC 288 ms
56,748 KB
testcase_14 AC 286 ms
56,844 KB
testcase_15 AC 281 ms
56,852 KB
testcase_16 AC 281 ms
56,732 KB
testcase_17 AC 272 ms
56,852 KB
testcase_18 AC 276 ms
56,888 KB
testcase_19 AC 280 ms
56,780 KB
testcase_20 AC 280 ms
56,876 KB
testcase_21 AC 295 ms
57,040 KB
testcase_22 AC 290 ms
56,776 KB
testcase_23 AC 286 ms
56,860 KB
testcase_24 AC 298 ms
56,896 KB
testcase_25 AC 291 ms
56,968 KB
testcase_26 AC 278 ms
56,852 KB
testcase_27 AC 274 ms
56,888 KB
testcase_28 AC 282 ms
56,796 KB
testcase_29 AC 286 ms
57,000 KB
testcase_30 AC 284 ms
56,864 KB
testcase_31 AC 291 ms
56,740 KB
testcase_32 AC 283 ms
57,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a,b) = readLine()!!.split(' ').map { it.toBigInteger() }
    val c = a + b
    val d = a * b
    println(when {
        c > d -> "S"
        c == d -> "E"
        c < d -> "P"
        else -> ""
    })
}
0