結果

問題 No.597 concat
ユーザー bennkei0327bennkei0327
提出日時 2018-01-14 23:49:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 3,232 ms
コンパイル使用メモリ 72,352 KB
実行使用メモリ 56,572 KB
最終ジャッジ日時 2023-08-25 17:34:57
合計ジャッジ時間 5,247 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
55,740 KB
testcase_01 AC 111 ms
56,572 KB
testcase_02 AC 109 ms
56,096 KB
testcase_03 AC 111 ms
55,676 KB
testcase_04 AC 110 ms
55,976 KB
testcase_05 AC 112 ms
55,872 KB
testcase_06 AC 109 ms
55,936 KB
testcase_07 AC 112 ms
55,820 KB
testcase_08 AC 110 ms
56,132 KB
testcase_09 AC 110 ms
55,636 KB
testcase_10 AC 109 ms
55,620 KB
testcase_11 AC 114 ms
55,284 KB
testcase_12 AC 110 ms
55,920 KB
testcase_13 AC 110 ms
55,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;

public class N597{
  public static void main(String[] args) {

    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    String str[] = new String[N];


    for(int i = 0; i < N; i++){
      str[i] = sc.next();
    }
    for(int i = 0; i < N; i++){
      System.out.print(str[i]);
    }
    System.out.println("");
  }
}
0