結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-12 21:59:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 66,044 KB
最終ジャッジ日時 2024-06-24 05:01:00
合計ジャッジ時間 13,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,288 KB
testcase_01 AC 130 ms
54,188 KB
testcase_02 AC 131 ms
53,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 872 ms
65,512 KB
testcase_11 AC 891 ms
65,764 KB
testcase_12 AC 894 ms
65,680 KB
testcase_13 AC 867 ms
65,456 KB
testcase_14 AC 870 ms
66,044 KB
testcase_15 AC 875 ms
65,628 KB
testcase_16 AC 861 ms
65,784 KB
testcase_17 AC 130 ms
54,040 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Sample {

public static void main(String args[]) {

Scanner scanner = new Scanner(System.in);

String input = scanner.nextLine();

int n=Integer.parseInt(input);
int sum=0;
for(int i =0;i<n;i++) {
String l =scanner.nextLine();
sum +=Long.parseLong(l);
}
System.out.println(sum); 
}}
0