結果

問題 No.1445 新入生プログラミング鯖
ユーザー ApassApass
提出日時 2021-03-31 14:09:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 72,620 KB
実行使用メモリ 56,316 KB
最終ジャッジ日時 2023-08-21 08:47:35
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,276 KB
testcase_01 AC 119 ms
55,796 KB
testcase_02 AC 120 ms
55,684 KB
testcase_03 AC 120 ms
55,680 KB
testcase_04 AC 120 ms
55,772 KB
testcase_05 AC 120 ms
56,032 KB
testcase_06 AC 120 ms
55,772 KB
testcase_07 AC 119 ms
55,908 KB
testcase_08 AC 120 ms
56,316 KB
testcase_09 AC 119 ms
55,816 KB
testcase_10 AC 121 ms
55,616 KB
testcase_11 AC 121 ms
56,004 KB
testcase_12 AC 122 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A_FreshmanProgrammingMackerel {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        String welcome = "Hello! You're new here, right? It's nice to meet you.\n";
        System.out.print(welcome.repeat(N));
    }
}
0