結果
問題 |
No.481 1から10
|
ユーザー |
![]() |
提出日時 | 2017-05-04 08:08:23 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 473 bytes |
コンパイル時間 | 2,652 ms |
コンパイル使用メモリ | 79,396 KB |
実行使用メモリ | 38,224 KB |
最終ジャッジ日時 | 2024-09-14 06:16:02 |
合計ジャッジ時間 | 4,302 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.stream.Stream; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String[] inputs = reader.readLine().split(" "); System.out.println(55 -Stream.of(inputs).mapToInt(Integer::parseInt).sum()); } }