結果
| 問題 | No.597 concat |
| コンテスト | |
| ユーザー |
thesis_or_die
|
| 提出日時 | 2017-11-24 22:22:53 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 488 bytes |
| 記録 | |
| コンパイル時間 | 2,124 ms |
| コンパイル使用メモリ | 83,160 KB |
| 実行使用メモリ | 41,788 KB |
| 最終ジャッジ日時 | 2026-05-21 13:47:17 |
| 合計ジャッジ時間 | 4,010 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
import java.util.*;
import java.io.*;
public class Main{
public static void main(String[] args){
Main m = new Main();
m.input();
m.out();
}
int n;
String s;
public void input(){
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
s = sc.next();
for(int i = 0; i < n - 1; i++){
s = s + sc.next();
}
sc.close();
}
public void out(){
System.out.println(s);
}
}
thesis_or_die