結果
問題 | No.369 足し間違い |
ユーザー | jimano |
提出日時 | 2018-01-13 16:56:50 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 95 ms / 2,000 ms |
コード長 | 575 bytes |
コンパイル時間 | 3,945 ms |
コンパイル使用メモリ | 73,484 KB |
実行使用メモリ | 39,332 KB |
最終ジャッジ日時 | 2024-12-24 00:41:14 |
合計ジャッジ時間 | 5,179 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
package me.yukicoder.lv1; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0369 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { int N = Integer.parseInt(br.readLine()); String[] str = br.readLine().split(" "); int V = Integer.parseInt(br.readLine()); int ans = 0; for (String s : str) { ans += Integer.parseInt(s); } System.out.println(ans - V); } catch (IOException e) { e.printStackTrace(); } } }