結果

問題 No.597 concat
ユーザー thesis_or_diethesis_or_die
提出日時 2017-11-24 22:22:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 76,332 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-11-27 07:20:06
合計ジャッジ時間 4,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,852 KB
testcase_01 AC 118 ms
41,136 KB
testcase_02 AC 115 ms
41,184 KB
testcase_03 AC 104 ms
40,128 KB
testcase_04 AC 120 ms
41,124 KB
testcase_05 AC 121 ms
41,168 KB
testcase_06 AC 117 ms
41,224 KB
testcase_07 AC 125 ms
41,284 KB
testcase_08 AC 121 ms
41,200 KB
testcase_09 AC 122 ms
41,040 KB
testcase_10 AC 119 ms
41,524 KB
testcase_11 AC 102 ms
39,980 KB
testcase_12 AC 118 ms
41,536 KB
testcase_13 AC 116 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
    }

}
0