結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-12 21:48:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 317 bytes
コンパイル時間 2,692 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 66,324 KB
最終ジャッジ日時 2024-06-24 04:48:18
合計ジャッジ時間 12,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,096 KB
testcase_01 AC 148 ms
54,240 KB
testcase_02 AC 147 ms
54,520 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 973 ms
65,600 KB
testcase_11 AC 973 ms
65,532 KB
testcase_12 AC 991 ms
65,840 KB
testcase_13 AC 971 ms
65,764 KB
testcase_14 AC 979 ms
65,760 KB
testcase_15 AC 939 ms
65,940 KB
testcase_16 AC 906 ms
66,324 KB
testcase_17 AC 142 ms
54,056 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

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 +=Integer.parseInt(l);
}
System.out.println(sum); 
}}
0