結果

問題 No.481 1から10
ユーザー minokasagominokasago
提出日時 2019-11-01 13:52:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 12,804 ms
コンパイル使用メモリ 418,260 KB
実行使用メモリ 53,008 KB
最終ジャッジ日時 2023-10-13 00:43:43
合計ジャッジ時間 16,544 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
52,936 KB
testcase_01 AC 300 ms
52,868 KB
testcase_02 AC 302 ms
52,976 KB
testcase_03 AC 299 ms
52,940 KB
testcase_04 AC 301 ms
52,872 KB
testcase_05 AC 294 ms
52,860 KB
testcase_06 AC 296 ms
52,900 KB
testcase_07 AC 299 ms
53,008 KB
testcase_08 AC 290 ms
52,956 KB
testcase_09 AC 289 ms
52,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

fun main()
{
    println(55 - readLine()!!.split(" ").map(String::toInt).sum())
}
0