結果

問題 No.597 concat
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 18:27:28
言語 Java19
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 72,232 KB
実行使用メモリ 56,356 KB
最終ジャッジ日時 2023-09-09 05:25:33
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,872 KB
testcase_01 AC 123 ms
54,012 KB
testcase_02 AC 122 ms
55,812 KB
testcase_03 AC 122 ms
55,824 KB
testcase_04 AC 124 ms
56,076 KB
testcase_05 AC 123 ms
55,992 KB
testcase_06 AC 123 ms
56,268 KB
testcase_07 AC 124 ms
55,824 KB
testcase_08 AC 121 ms
55,900 KB
testcase_09 AC 122 ms
55,864 KB
testcase_10 AC 123 ms
56,288 KB
testcase_11 AC 125 ms
55,684 KB
testcase_12 AC 124 ms
55,884 KB
testcase_13 AC 123 ms
56,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no597{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		short n=stdIn.nextShort();
		String[] s=new String[n];
		for(short i=0;i<n;i++) s[i]=stdIn.next();
		for(short i=0;i<n;i++) System.out.print(s[i]);
		System.out.println();
	}
}
0