結果

問題 No.481 1から10
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-01-16 23:36:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 11,508 ms
コンパイル使用メモリ 410,092 KB
実行使用メモリ 53,160 KB
最終ジャッジ日時 2023-09-06 20:45:30
合計ジャッジ時間 15,411 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
53,116 KB
testcase_01 AC 280 ms
53,032 KB
testcase_02 AC 286 ms
52,760 KB
testcase_03 AC 294 ms
52,860 KB
testcase_04 AC 290 ms
52,804 KB
testcase_05 AC 291 ms
52,840 KB
testcase_06 AC 287 ms
53,160 KB
testcase_07 AC 281 ms
52,844 KB
testcase_08 AC 284 ms
52,800 KB
testcase_09 AC 285 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    println(55 - readLine()!!.split(' ').map { it.toInt() }.sum())
}
0