結果

問題 No.1445 新入生プログラミング鯖
ユーザー マサマサ
提出日時 2022-01-11 16:17:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-04-26 20:41:19
合計ジャッジ時間 4,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,052 KB
testcase_01 AC 130 ms
53,796 KB
testcase_02 AC 130 ms
54,020 KB
testcase_03 AC 125 ms
53,992 KB
testcase_04 AC 121 ms
53,820 KB
testcase_05 AC 123 ms
54,152 KB
testcase_06 AC 111 ms
52,768 KB
testcase_07 AC 124 ms
54,060 KB
testcase_08 AC 124 ms
53,872 KB
testcase_09 AC 123 ms
53,984 KB
testcase_10 AC 124 ms
53,944 KB
testcase_11 AC 111 ms
53,004 KB
testcase_12 AC 127 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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++) {
            System.out.println("Hello! You're new here, right? It's nice to meet you.");
        }
    }
}
0