結果

問題 No.1445 新入生プログラミング鯖
ユーザー ApassApass
提出日時 2021-03-31 14:09:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 4,922 ms
コンパイル使用メモリ 78,008 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-05-08 14:04:15
合計ジャッジ時間 5,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,176 KB
testcase_01 AC 124 ms
41,140 KB
testcase_02 AC 118 ms
40,852 KB
testcase_03 AC 121 ms
41,232 KB
testcase_04 AC 118 ms
41,092 KB
testcase_05 AC 119 ms
40,896 KB
testcase_06 AC 119 ms
41,212 KB
testcase_07 AC 104 ms
39,972 KB
testcase_08 AC 104 ms
39,868 KB
testcase_09 AC 119 ms
40,912 KB
testcase_10 AC 117 ms
41,204 KB
testcase_11 AC 120 ms
41,220 KB
testcase_12 AC 116 ms
40,948 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