結果

問題 No.1088 A+B Problem
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-21 20:14:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 13,210 ms
コンパイル使用メモリ 443,584 KB
実行使用メモリ 57,084 KB
最終ジャッジ日時 2024-09-19 17:44:52
合計ジャッジ時間 16,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
56,988 KB
testcase_01 AC 301 ms
56,872 KB
testcase_02 AC 295 ms
56,924 KB
testcase_03 AC 295 ms
56,964 KB
testcase_04 AC 296 ms
56,900 KB
testcase_05 AC 300 ms
56,864 KB
testcase_06 AC 297 ms
56,976 KB
testcase_07 AC 296 ms
56,828 KB
testcase_08 AC 297 ms
56,884 KB
testcase_09 AC 295 ms
57,084 KB
testcase_10 AC 298 ms
56,832 KB
testcase_11 AC 297 ms
56,884 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