Submission #25112
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.util.Scanner; import java.util.stream.IntStream; public class Main{ static IntStream REPS( int v){ return IntStream.range(0,v);} static IntStream REPS( int l, int r){ return IntStream.rangeClosed(l,r);} static IntStream INS( int n) { return REPS(n).map(i->getInt());} static Scanner s= new Scanner(System.in); static int getInt(){ return Integer.parseInt(s.next());} public static void main(String[]$){ System.out.println( s.nextBigInteger() .add(s.nextBigInteger()) .add(s.nextBigInteger()) .add(s.nextBigInteger()) ); } } |
ステータス
項目 | データ |
---|---|
問題 | 0007 - みらくるくるる |
ユーザー名 | fal_rnd |
投稿日時 | 2017-08-22 10:35:29 |
言語 | Java |
状態 | Accepted |
得点 | 2 |
ソースコード長 | 573 Byte |
最大実行時間 | 89 ms |
最大メモリ使用量 | 16300 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | ALL | 2 / 2 | * |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # |
---|---|---|---|---|
Alice_in1.txt | AC | 89 ms | 16300 KB |
1
|