結果

問題 No.1088 A+B Problem
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-21 20:14:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 12,486 ms
コンパイル使用メモリ 431,604 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2023-10-19 21:44:58
合計ジャッジ時間 17,481 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
54,444 KB
testcase_01 AC 314 ms
54,428 KB
testcase_02 AC 313 ms
54,440 KB
testcase_03 AC 317 ms
54,440 KB
testcase_04 AC 315 ms
54,428 KB
testcase_05 AC 311 ms
54,440 KB
testcase_06 AC 317 ms
54,440 KB
testcase_07 AC 316 ms
54,444 KB
testcase_08 AC 311 ms
54,444 KB
testcase_09 AC 309 ms
54,440 KB
testcase_10 AC 313 ms
54,436 KB
testcase_11 AC 314 ms
54,444 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

// https://yukicoder.me/problems/no/1088
fun main(args: Array<String>){
	var (a,b)=readLine()!!.split(" ").map(String::toInt)
	print(a+b)
}
0