結果

問題 No.480 合計
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 21:26:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 75,980 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-10-12 20:27:40
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,108 KB
testcase_01 AC 112 ms
53,000 KB
testcase_02 AC 125 ms
53,764 KB
testcase_03 AC 126 ms
53,860 KB
testcase_04 AC 126 ms
54,052 KB
testcase_05 AC 123 ms
53,936 KB
testcase_06 AC 124 ms
53,960 KB
testcase_07 AC 124 ms
54,008 KB
testcase_08 AC 110 ms
53,032 KB
testcase_09 AC 124 ms
53,868 KB
testcase_10 AC 125 ms
54,032 KB
testcase_11 AC 125 ms
53,848 KB
testcase_12 AC 121 ms
53,796 KB
testcase_13 AC 126 ms
53,848 KB
testcase_14 AC 124 ms
53,792 KB
testcase_15 AC 122 ms
53,892 KB
testcase_16 AC 127 ms
54,080 KB
testcase_17 AC 126 ms
54,272 KB
testcase_18 AC 111 ms
52,812 KB
testcase_19 AC 128 ms
53,772 KB
testcase_20 AC 124 ms
53,796 KB
testcase_21 AC 128 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main{
    public static int sum(int n, int acc) {
        if(n <= 0){return acc;}
        else{return sum(n-1, n+acc);}
    }
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.next());
        System.out.println(sum(n, 0));
    }
}
0