結果
| 問題 |
No.597 concat
|
| コンテスト | |
| ユーザー |
fal_rnd
|
| 提出日時 | 2018-01-05 22:59:06 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 150 ms / 2,000 ms |
| コード長 | 1,604 bytes |
| コンパイル時間 | 2,669 ms |
| コンパイル使用メモリ | 89,016 KB |
| 実行使用メモリ | 41,680 KB |
| 最終ジャッジ日時 | 2024-12-23 07:12:54 |
| 合計ジャッジ時間 | 5,533 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Iterator;
import java.util.PrimitiveIterator;
import java.util.Scanner;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
class Main_Util{
private void solve(){
System.out.println(strs(gInt()).collect(Collectors.joining()));
}
public static void main(String[]$){
new Main_Util().solve();
System.out.flush();
}
static class System{
private static final InputStream in=java.lang.System.in;
private static final PrintWriter out=new PrintWriter(java.lang.System.out,false);
}
static Scanner s=new Scanner(System.in);
static int gInt(){
return s.nextInt();
}
static long gLong(){
return s.nextLong();
}
static long gDouble(){
return s.nextLong();
}
static Range rep(int i){
return new Range(i);
}
static Range rep(int f,int t){
return new Range(f,t);
}
static class Range implements Iterable<Integer>,PrimitiveIterator.OfInt{
int from,to,c;
Range(int from,int to){
this.from=from;
this.to=to;
this.c=from;
}
Range(int n){
this(0,n-1);
}
@Override
public Iterator<Integer> iterator(){
return this;
}
@Override
public boolean hasNext(){
return c<=to;
}
@Override
public int nextInt(){
return c++;
}
}
static IntStream REPS(int v){
return IntStream.range(0,v);
}
static IntStream REPS(int l,int r){
return IntStream.rangeClosed(l,r);
}
static IntStream ints(int n){
return REPS(n).map(i->gInt());
}
static Stream<String> strs(int n){
return REPS(n).mapToObj(i->s.next());
}
}
fal_rnd