結果

問題 No.1088 A+B Problem
ユーザー qszhuqszhu
提出日時 2022-10-05 21:51:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 12,469 ms
コンパイル使用メモリ 413,308 KB
実行使用メモリ 54,896 KB
最終ジャッジ日時 2023-08-30 11:37:56
合計ジャッジ時間 18,236 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
52,708 KB
testcase_01 AC 290 ms
54,896 KB
testcase_02 AC 288 ms
52,648 KB
testcase_03 AC 289 ms
53,000 KB
testcase_04 AC 291 ms
52,896 KB
testcase_05 AC 287 ms
52,916 KB
testcase_06 AC 284 ms
52,908 KB
testcase_07 AC 288 ms
52,740 KB
testcase_08 AC 288 ms
52,724 KB
testcase_09 AC 288 ms
52,624 KB
testcase_10 AC 287 ms
52,556 KB
testcase_11 AC 290 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (A, B) = readln().split(" ").map { it.toInt() }
    println(A + B)
}
0