結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tsunabittsunabit
提出日時 2018-03-25 03:36:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 792 ms / 3,000 ms
コード長 867 bytes
コンパイル時間 3,970 ms
コンパイル使用メモリ 77,024 KB
実行使用メモリ 66,396 KB
最終ジャッジ日時 2024-06-25 05:10:39
合計ジャッジ時間 12,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,052 KB
testcase_01 AC 127 ms
53,788 KB
testcase_02 AC 122 ms
53,812 KB
testcase_03 AC 123 ms
54,360 KB
testcase_04 AC 127 ms
54,240 KB
testcase_05 AC 130 ms
53,852 KB
testcase_06 AC 172 ms
54,536 KB
testcase_07 AC 221 ms
58,236 KB
testcase_08 AC 423 ms
59,568 KB
testcase_09 AC 643 ms
60,048 KB
testcase_10 AC 740 ms
66,264 KB
testcase_11 AC 751 ms
66,168 KB
testcase_12 AC 739 ms
66,212 KB
testcase_13 AC 763 ms
66,204 KB
testcase_14 AC 671 ms
66,240 KB
testcase_15 AC 769 ms
66,396 KB
testcase_16 AC 792 ms
66,232 KB
testcase_17 AC 124 ms
54,052 KB
testcase_18 AC 123 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// 問題文
// N個の数値データが入力されるのでそれらの値の合計を求めてください。
// ただし、intなどの32ビット整数型では収まらないので注意してください。
// 入力
// 1行目にデータの個数N。
// 2行目に半角スペース区切りのN個の数値データ。
// 2≤N≤500000
// 0≤Ai<263 (1≤i≤N)
// 0≤∑1≤i≤NAi=A1+A2+…+AN<263
public class No9009 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        long n = sc.nextInt();
        long t = 0L;
        for(int i = 0 ; i < n ; i++){
            //Stringをlongへ変換する
            t += Long.parseLong(sc.next());
        }
        System.out.println(t);
    }
}
0