結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nanae
提出日時 2018-07-20 22:53:23
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 416 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 61,688 KB
最終ジャッジ日時 2024-12-26 04:31:52
合計ジャッジ時間 11,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 RE * 1
other AC * 8 RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long[] a = new long[N];
        for (int i = 0; i < N; i++) {
            a[i] = sc.nextInt();
        }
        long ans = 0;
        for (int i = 0; i < N; i++) {
            ans += a[i];
        }
        System.out.println(ans);
    }
}
0