結果

問題 No.597 concat
ユーザー Pump0129Pump0129
提出日時 2018-03-26 20:09:25
言語 Java19
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 72,100 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2023-09-07 12:48:59
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
55,444 KB
testcase_01 AC 116 ms
55,664 KB
testcase_02 AC 112 ms
55,632 KB
testcase_03 AC 115 ms
55,764 KB
testcase_04 AC 113 ms
55,708 KB
testcase_05 AC 114 ms
55,892 KB
testcase_06 AC 117 ms
56,136 KB
testcase_07 AC 117 ms
55,616 KB
testcase_08 AC 119 ms
55,768 KB
testcase_09 AC 119 ms
55,704 KB
testcase_10 AC 118 ms
56,060 KB
testcase_11 AC 118 ms
55,568 KB
testcase_12 AC 117 ms
56,024 KB
testcase_13 AC 117 ms
55,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no597;

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner scan = new Scanner(System.in);
        int cnt = Integer.parseInt(scan.nextLine());
        for (int i = 0; i < cnt; i++) System.out.print(scan.nextLine());
        System.out.println();
    }
}
0