結果

問題 No.1088 A+B Problem
ユーザー yumechiyumechi
提出日時 2021-02-21 01:48:01
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 11,833 ms
コンパイル使用メモリ 266,084 KB
実行使用メモリ 63,888 KB
最終ジャッジ日時 2024-09-19 00:22:57
合計ジャッジ時間 25,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 962 ms
63,852 KB
testcase_01 AC 952 ms
63,720 KB
testcase_02 AC 967 ms
63,356 KB
testcase_03 AC 961 ms
63,836 KB
testcase_04 AC 980 ms
63,864 KB
testcase_05 AC 976 ms
63,888 KB
testcase_06 AC 988 ms
63,836 KB
testcase_07 AC 971 ms
63,748 KB
testcase_08 AC 964 ms
63,324 KB
testcase_09 AC 952 ms
63,412 KB
testcase_10 AC 959 ms
63,708 KB
testcase_11 AC 952 ms
63,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

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