結果

問題 No.480 合計
ユーザー mishmish
提出日時 2019-11-29 17:58:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 73,824 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-11-20 21:23:37
合計ジャッジ時間 6,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,208 KB
testcase_01 AC 136 ms
41,308 KB
testcase_02 AC 134 ms
41,512 KB
testcase_03 AC 135 ms
41,080 KB
testcase_04 AC 132 ms
41,056 KB
testcase_05 AC 135 ms
41,400 KB
testcase_06 AC 135 ms
41,456 KB
testcase_07 AC 139 ms
41,524 KB
testcase_08 AC 134 ms
41,404 KB
testcase_09 AC 134 ms
41,180 KB
testcase_10 AC 134 ms
41,220 KB
testcase_11 AC 120 ms
40,304 KB
testcase_12 AC 133 ms
41,116 KB
testcase_13 AC 133 ms
41,260 KB
testcase_14 AC 135 ms
41,472 KB
testcase_15 AC 134 ms
41,064 KB
testcase_16 AC 136 ms
41,604 KB
testcase_17 AC 133 ms
41,332 KB
testcase_18 AC 135 ms
41,224 KB
testcase_19 AC 133 ms
41,184 KB
testcase_20 AC 137 ms
41,308 KB
testcase_21 AC 137 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    
    public static int returnSum (int in) {
        int sum = 0;
        for (int i = 1; i <= in; i++){
            sum += i;
        }
        return sum;
    }
    
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        
        int sum = returnSum(scan.nextInt());
        
       System.out.println(sum);
    }
}
0