結果
| 問題 | No.597 concat |
| コンテスト | |
| ユーザー |
Tsukasa_Type
|
| 提出日時 | 2018-02-09 02:22:05 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 228 bytes |
| 記録 | |
| コンパイル時間 | 1,672 ms |
| コンパイル使用メモリ | 83,080 KB |
| 実行使用メモリ | 41,856 KB |
| 最終ジャッジ日時 | 2026-04-18 04:28:53 |
| 合計ジャッジ時間 | 3,404 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 11 |
ソースコード
import java.util.*;
public class Main {
static Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
int n = sc.nextInt();
String ans = "";
for (int i=0; i<n; i++) {
ans += sc.next();
}
}
}
Tsukasa_Type