結果

問題 No.481 1から10
ユーザー minokasagominokasago
提出日時 2019-11-01 13:52:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 11,094 ms
コンパイル使用メモリ 431,548 KB
実行使用メモリ 51,832 KB
最終ジャッジ日時 2024-09-14 22:37:55
合計ジャッジ時間 15,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
51,604 KB
testcase_01 AC 322 ms
51,292 KB
testcase_02 AC 320 ms
51,664 KB
testcase_03 AC 319 ms
51,500 KB
testcase_04 AC 321 ms
51,416 KB
testcase_05 AC 322 ms
51,648 KB
testcase_06 AC 316 ms
51,552 KB
testcase_07 AC 324 ms
51,548 KB
testcase_08 AC 319 ms
51,832 KB
testcase_09 AC 316 ms
51,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

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