結果

問題 No.1432 Not Xor
ユーザー face4face4
提出日時 2021-04-08 23:28:12
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 72 bytes
コンパイル時間 12,347 ms
コンパイル使用メモリ 411,252 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2023-09-06 07:10:38
合計ジャッジ時間 15,815 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
53,076 KB
testcase_01 AC 287 ms
52,868 KB
testcase_02 AC 280 ms
52,936 KB
testcase_03 AC 285 ms
52,980 KB
testcase_04 AC 275 ms
53,196 KB
testcase_05 AC 271 ms
52,992 KB
testcase_06 AC 279 ms
53,164 KB
testcase_07 AC 280 ms
53,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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