結果

問題 No.597 concat
ユーザー ohagi_1182ohagi_1182
提出日時 2017-11-24 22:22:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-05-05 10:57:16
合計ジャッジ時間 4,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,948 KB
testcase_01 AC 133 ms
41,032 KB
testcase_02 AC 134 ms
41,124 KB
testcase_03 AC 131 ms
41,192 KB
testcase_04 AC 134 ms
41,364 KB
testcase_05 AC 133 ms
41,080 KB
testcase_06 AC 134 ms
41,452 KB
testcase_07 AC 134 ms
41,304 KB
testcase_08 AC 134 ms
41,128 KB
testcase_09 AC 134 ms
41,096 KB
testcase_10 AC 132 ms
41,292 KB
testcase_11 AC 134 ms
40,964 KB
testcase_12 AC 133 ms
41,068 KB
testcase_13 AC 134 ms
41,512 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