結果
問題 | No.46 はじめのn歩 |
ユーザー | nogisun |
提出日時 | 2020-03-19 10:22:47 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 3,241 ms |
コンパイル使用メモリ | 73,828 KB |
実行使用メモリ | 103,776 KB |
最終ジャッジ日時 | 2024-05-08 03:08:34 |
合計ジャッジ時間 | 5,453 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,308 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 126 ms
41,184 KB |
testcase_09 | RE | - |
ソースコード
import java.util.Scanner; public class No9009{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int number = sc.nextInt(); long arry[] = new long[number]; long sum = 0; for (int i=0; i < number; i++){ arry[i] = sc.nextLong(); sum += arry[i]; } System.out.println(sum); } }