結果
問題 | No.46 はじめのn歩 |
ユーザー | nogisun |
提出日時 | 2020-03-19 10:22:47 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 3,598 ms |
コンパイル使用メモリ | 78,312 KB |
実行使用メモリ | 118,996 KB |
最終ジャッジ日時 | 2024-12-14 03:05:13 |
合計ジャッジ時間 | 5,819 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
54,000 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 | 141 ms
54,068 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); } }