結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ikawaiikawai
提出日時 2023-09-01 14:19:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 838 ms / 3,000 ms
コード長 304 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 58,020 KB
最終ジャッジ日時 2024-06-11 02:31:07
合計ジャッジ時間 11,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,520 KB
testcase_01 AC 110 ms
41,028 KB
testcase_02 AC 108 ms
41,048 KB
testcase_03 AC 110 ms
41,380 KB
testcase_04 AC 113 ms
41,088 KB
testcase_05 AC 132 ms
41,212 KB
testcase_06 AC 179 ms
42,584 KB
testcase_07 AC 250 ms
47,076 KB
testcase_08 AC 492 ms
48,180 KB
testcase_09 AC 489 ms
48,320 KB
testcase_10 AC 750 ms
57,684 KB
testcase_11 AC 735 ms
57,648 KB
testcase_12 AC 829 ms
58,020 KB
testcase_13 AC 802 ms
57,896 KB
testcase_14 AC 756 ms
57,308 KB
testcase_15 AC 838 ms
57,604 KB
testcase_16 AC 803 ms
57,720 KB
testcase_17 AC 106 ms
40,836 KB
testcase_18 AC 115 ms
41,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Wandbox
{
    public static void main(String[] args)
    {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	long ans = 0;
    	
    	for (int i = 0; i < n; i++) {
    		ans += sc.nextLong();	
    	} 
    	
        System.out.println(ans);
    }
}
0