結果

問題 No.597 concat
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 18:27:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-06-26 22:32:46
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,096 KB
testcase_01 AC 126 ms
54,100 KB
testcase_02 AC 125 ms
53,740 KB
testcase_03 AC 124 ms
53,760 KB
testcase_04 AC 126 ms
53,580 KB
testcase_05 AC 133 ms
54,084 KB
testcase_06 AC 129 ms
53,832 KB
testcase_07 AC 130 ms
54,096 KB
testcase_08 AC 124 ms
53,804 KB
testcase_09 AC 124 ms
54,080 KB
testcase_10 AC 126 ms
53,916 KB
testcase_11 AC 128 ms
53,736 KB
testcase_12 AC 116 ms
52,816 KB
testcase_13 AC 126 ms
54,248 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