結果

問題 No.1432 Not Xor
ユーザー face4face4
提出日時 2021-04-08 23:28:12
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 72 bytes
コンパイル時間 11,127 ms
コンパイル使用メモリ 422,940 KB
実行使用メモリ 51,952 KB
最終ジャッジ日時 2024-06-24 01:50:40
合計ジャッジ時間 15,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
51,652 KB
testcase_01 AC 317 ms
51,844 KB
testcase_02 AC 316 ms
51,844 KB
testcase_03 AC 317 ms
51,892 KB
testcase_04 AC 313 ms
51,952 KB
testcase_05 AC 313 ms
51,728 KB
testcase_06 AC 314 ms
51,756 KB
testcase_07 AC 314 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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