結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-09 20:05:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 956 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 4,462 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 58,044 KB
最終ジャッジ日時 2024-09-16 15:30:58
合計ジャッジ時間 12,519 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,292 KB
testcase_01 AC 131 ms
41,248 KB
testcase_02 AC 131 ms
40,888 KB
testcase_03 AC 129 ms
41,288 KB
testcase_04 AC 131 ms
41,440 KB
testcase_05 AC 142 ms
41,296 KB
testcase_06 AC 189 ms
42,336 KB
testcase_07 AC 289 ms
47,256 KB
testcase_08 AC 559 ms
48,012 KB
testcase_09 AC 632 ms
48,512 KB
testcase_10 AC 947 ms
57,708 KB
testcase_11 AC 954 ms
57,700 KB
testcase_12 AC 917 ms
57,544 KB
testcase_13 AC 956 ms
57,148 KB
testcase_14 AC 865 ms
58,044 KB
testcase_15 AC 943 ms
57,824 KB
testcase_16 AC 909 ms
57,820 KB
testcase_17 AC 129 ms
41,280 KB
testcase_18 AC 123 ms
40,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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