結果

問題 No.353 ヘイトプラス
ユーザー GoryudyumaGoryudyuma
提出日時 2018-05-16 09:14:46
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 950 ms / 1,000 ms
コード長 426 bytes
コンパイル時間 11,875 ms
コンパイル使用メモリ 271,224 KB
実行使用メモリ 65,480 KB
最終ジャッジ日時 2024-07-03 22:37:08
合計ジャッジ時間 21,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 924 ms
65,436 KB
testcase_01 AC 928 ms
65,372 KB
testcase_02 AC 950 ms
65,328 KB
testcase_03 AC 940 ms
65,236 KB
testcase_04 AC 926 ms
65,264 KB
testcase_05 AC 945 ms
65,452 KB
testcase_06 AC 936 ms
65,480 KB
testcase_07 AC 948 ms
65,360 KB
testcase_08 AC 944 ms
65,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

import scala.collection.Searching._
import scala.annotation.tailrec
import scala.collection.mutable
import scala.collection.immutable._
import scala.io.StdIn.readLine

object Main {
  val m = (1 << 9) - 1

  def solve(sc: => Scanner): Unit = {
    println(Array.fill(2)(sc.nextInt).sum)
  }


  def main(args: Array[String]): Unit = {
    val sc: Scanner = new Scanner(System.in)
    solve(sc)
  }
}
0