結果

問題 No.1088 A+B Problem
ユーザー qszhuqszhu
提出日時 2022-10-05 21:51:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 11,526 ms
コンパイル使用メモリ 435,304 KB
実行使用メモリ 57,020 KB
最終ジャッジ日時 2024-06-10 11:45:58
合計ジャッジ時間 15,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
57,020 KB
testcase_01 AC 301 ms
56,888 KB
testcase_02 AC 309 ms
56,952 KB
testcase_03 AC 302 ms
56,804 KB
testcase_04 AC 301 ms
56,928 KB
testcase_05 AC 304 ms
56,904 KB
testcase_06 AC 304 ms
56,776 KB
testcase_07 AC 300 ms
56,940 KB
testcase_08 AC 307 ms
56,848 KB
testcase_09 AC 305 ms
56,968 KB
testcase_10 AC 305 ms
56,848 KB
testcase_11 AC 301 ms
56,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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