結果

問題 No.597 concat
ユーザー ohagi_1182ohagi_1182
提出日時 2017-11-24 22:22:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 73,796 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-11-27 07:18:48
合計ジャッジ時間 4,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,940 KB
testcase_01 AC 101 ms
39,808 KB
testcase_02 AC 103 ms
39,848 KB
testcase_03 AC 112 ms
40,732 KB
testcase_04 AC 119 ms
40,872 KB
testcase_05 AC 111 ms
40,916 KB
testcase_06 AC 106 ms
39,816 KB
testcase_07 AC 119 ms
41,300 KB
testcase_08 AC 105 ms
39,816 KB
testcase_09 AC 116 ms
40,872 KB
testcase_10 AC 118 ms
40,900 KB
testcase_11 AC 105 ms
39,840 KB
testcase_12 AC 115 ms
40,624 KB
testcase_13 AC 116 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		for(int i = 0 ; i < n ; i++) {
			String a = sc.next();
			System.out.print(a);
		}
		System.out.println();
	}
}
0