結果

問題 No.480 合計
ユーザー samesame
提出日時 2020-02-15 18:28:43
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 913 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 10,097 ms
コンパイル使用メモリ 253,368 KB
実行使用メモリ 63,444 KB
最終ジャッジ日時 2024-10-06 14:01:30
合計ジャッジ時間 31,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 886 ms
63,120 KB
testcase_01 AC 904 ms
63,444 KB
testcase_02 AC 871 ms
63,344 KB
testcase_03 AC 861 ms
63,400 KB
testcase_04 AC 887 ms
63,240 KB
testcase_05 AC 878 ms
63,104 KB
testcase_06 AC 884 ms
63,172 KB
testcase_07 AC 876 ms
63,176 KB
testcase_08 AC 881 ms
63,284 KB
testcase_09 AC 878 ms
63,092 KB
testcase_10 AC 882 ms
63,308 KB
testcase_11 AC 876 ms
63,272 KB
testcase_12 AC 890 ms
63,176 KB
testcase_13 AC 876 ms
63,368 KB
testcase_14 AC 874 ms
63,132 KB
testcase_15 AC 861 ms
63,232 KB
testcase_16 AC 892 ms
63,344 KB
testcase_17 AC 913 ms
63,228 KB
testcase_18 AC 910 ms
63,424 KB
testcase_19 AC 867 ms
63,364 KB
testcase_20 AC 890 ms
63,360 KB
testcase_21 AC 893 ms
63,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object P480 extends App {
  val sc = new Scanner(System.in)
  val n = sc.nextInt()
  println(sum(n))

  def sum(n: Int): Int = n match {
    case 0 => 0
    case _ => n + sum(n - 1)
  }
}
0