結果

問題 No.480 合計
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-22 20:16:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-06-07 23:04:13
合計ジャッジ時間 5,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,920 KB
testcase_01 AC 121 ms
54,032 KB
testcase_02 AC 122 ms
53,768 KB
testcase_03 AC 121 ms
53,944 KB
testcase_04 AC 120 ms
54,004 KB
testcase_05 AC 120 ms
53,940 KB
testcase_06 AC 105 ms
52,492 KB
testcase_07 AC 122 ms
54,000 KB
testcase_08 AC 121 ms
53,712 KB
testcase_09 AC 123 ms
53,884 KB
testcase_10 AC 124 ms
53,748 KB
testcase_11 AC 121 ms
53,872 KB
testcase_12 AC 120 ms
54,336 KB
testcase_13 AC 128 ms
53,820 KB
testcase_14 AC 122 ms
54,076 KB
testcase_15 AC 121 ms
54,048 KB
testcase_16 AC 124 ms
54,036 KB
testcase_17 AC 124 ms
54,180 KB
testcase_18 AC 123 ms
53,832 KB
testcase_19 AC 124 ms
54,152 KB
testcase_20 AC 134 ms
53,944 KB
testcase_21 AC 125 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Sum{
    public int Cal(int s){
        int gokei = 0;
        for(int i=1;i<=s;i++){
            gokei = gokei + i;
        }
        return gokei;
    }
}

public class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        Sum sm = new Sum();
        int sum = sm.Cal(N);
        System.out.println(sum);
    }
}
0