結果
問題 | No.369 足し間違い |
ユーザー | h_tyokinuhata |
提出日時 | 2016-06-11 21:25:51 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 260 ms / 2,000 ms |
コード長 | 281 bytes |
コンパイル時間 | 2,178 ms |
コンパイル使用メモリ | 74,176 KB |
実行使用メモリ | 57,776 KB |
最終ジャッジ日時 | 2024-10-09 12:59:35 |
合計ジャッジ時間 | 4,252 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(), sum = 0; for(int i = 0; i < N; i++) sum += sc.nextInt(); System.out.println(sum - sc.nextInt()); } }