結果

問題 No.481 1から10
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-01-16 23:36:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 12,934 ms
コンパイル使用メモリ 427,348 KB
実行使用メモリ 57,076 KB
最終ジャッジ日時 2024-06-24 15:06:25
合計ジャッジ時間 14,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
57,020 KB
testcase_01 AC 291 ms
56,880 KB
testcase_02 AC 295 ms
56,948 KB
testcase_03 AC 296 ms
56,824 KB
testcase_04 AC 289 ms
56,776 KB
testcase_05 AC 292 ms
56,888 KB
testcase_06 AC 291 ms
56,852 KB
testcase_07 AC 290 ms
56,800 KB
testcase_08 AC 293 ms
56,940 KB
testcase_09 AC 291 ms
57,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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