結果

問題 No.1088 A+B Problem
ユーザー 👑 yumechiyumechi
提出日時 2021-02-21 01:48:01
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,047 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 12,038 ms
コンパイル使用メモリ 264,168 KB
実行使用メモリ 65,796 KB
最終ジャッジ日時 2023-10-19 04:07:03
合計ジャッジ時間 26,297 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 999 ms
64,060 KB
testcase_01 AC 1,037 ms
65,796 KB
testcase_02 AC 1,030 ms
65,784 KB
testcase_03 AC 1,023 ms
65,776 KB
testcase_04 AC 1,023 ms
65,728 KB
testcase_05 AC 1,017 ms
65,788 KB
testcase_06 AC 1,014 ms
65,784 KB
testcase_07 AC 1,038 ms
65,784 KB
testcase_08 AC 1,032 ms
65,776 KB
testcase_09 AC 1,022 ms
65,740 KB
testcase_10 AC 1,047 ms
65,796 KB
testcase_11 AC 1,038 ms
65,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  println(Array.fill(2)(sc.nextInt).sum)
}
0