結果

問題 No.597 concat
ユーザー sudo_yumsudo_yum
提出日時 2018-05-25 13:02:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-06-28 17:55:51
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,040 KB
testcase_01 AC 113 ms
41,300 KB
testcase_02 AC 102 ms
41,104 KB
testcase_03 AC 120 ms
41,256 KB
testcase_04 AC 106 ms
40,048 KB
testcase_05 AC 115 ms
41,112 KB
testcase_06 AC 116 ms
41,128 KB
testcase_07 AC 119 ms
41,472 KB
testcase_08 AC 116 ms
41,168 KB
testcase_09 AC 108 ms
41,276 KB
testcase_10 AC 118 ms
41,564 KB
testcase_11 AC 116 ms
41,132 KB
testcase_12 AC 113 ms
41,112 KB
testcase_13 AC 116 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  static StringBuilder sb = new StringBuilder("");
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N =sc.nextInt();
    for (int i=0;i<N;i++ ) {
      sb.append(sc.next());
    }
    sc.close();
    System.out.println(sb);
  }
}
0