結果

問題 No.597 concat
ユーザー ohagi_1182ohagi_1182
提出日時 2017-11-24 22:22:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 70,888 KB
実行使用メモリ 55,924 KB
最終ジャッジ日時 2023-08-18 04:38:04
合計ジャッジ時間 4,732 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
55,776 KB
testcase_01 AC 126 ms
55,896 KB
testcase_02 AC 125 ms
55,640 KB
testcase_03 AC 127 ms
55,476 KB
testcase_04 AC 127 ms
55,624 KB
testcase_05 AC 125 ms
55,624 KB
testcase_06 AC 127 ms
55,924 KB
testcase_07 AC 129 ms
55,596 KB
testcase_08 AC 128 ms
55,680 KB
testcase_09 AC 126 ms
55,824 KB
testcase_10 AC 125 ms
55,524 KB
testcase_11 AC 126 ms
55,792 KB
testcase_12 AC 126 ms
55,620 KB
testcase_13 AC 127 ms
55,724 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