結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-12 23:07:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 922 ms / 3,000 ms
コード長 317 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 66,032 KB
最終ジャッジ日時 2024-06-24 05:50:09
合計ジャッジ時間 11,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
52,928 KB
testcase_01 AC 125 ms
54,164 KB
testcase_02 AC 125 ms
53,888 KB
testcase_03 AC 120 ms
54,084 KB
testcase_04 AC 127 ms
54,216 KB
testcase_05 AC 131 ms
54,064 KB
testcase_06 AC 181 ms
54,152 KB
testcase_07 AC 250 ms
57,644 KB
testcase_08 AC 429 ms
59,548 KB
testcase_09 AC 549 ms
62,936 KB
testcase_10 AC 894 ms
65,576 KB
testcase_11 AC 870 ms
65,576 KB
testcase_12 AC 871 ms
65,652 KB
testcase_13 AC 874 ms
65,576 KB
testcase_14 AC 878 ms
65,468 KB
testcase_15 AC 922 ms
65,528 KB
testcase_16 AC 881 ms
66,032 KB
testcase_17 AC 126 ms
53,948 KB
testcase_18 AC 127 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

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);
Long sum=0L;
for(int i =0;i<n;i++) {
String l =scanner.nextLine();
sum +=Long.parseLong(l);
}
System.out.println(sum); 
}}
0