結果

問題 No.1445 新入生プログラミング鯖
ユーザー Subaru314Subaru314
提出日時 2022-02-12 20:53:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-06-28 23:45:12
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,900 KB
testcase_01 AC 102 ms
52,924 KB
testcase_02 AC 111 ms
54,000 KB
testcase_03 AC 105 ms
53,448 KB
testcase_04 AC 114 ms
54,120 KB
testcase_05 AC 113 ms
53,860 KB
testcase_06 AC 114 ms
54,152 KB
testcase_07 AC 97 ms
52,388 KB
testcase_08 AC 111 ms
54,376 KB
testcase_09 AC 114 ms
54,000 KB
testcase_10 AC 101 ms
52,944 KB
testcase_11 AC 113 ms
52,716 KB
testcase_12 AC 117 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;

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