結果

問題 No.1445 新入生プログラミング鯖
ユーザー Subaru314Subaru314
提出日時 2022-02-12 20:53:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 71,408 KB
実行使用メモリ 56,068 KB
最終ジャッジ日時 2023-09-11 09:03:31
合計ジャッジ時間 5,044 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
56,060 KB
testcase_01 AC 126 ms
55,812 KB
testcase_02 AC 127 ms
55,536 KB
testcase_03 AC 125 ms
55,688 KB
testcase_04 AC 126 ms
55,680 KB
testcase_05 AC 126 ms
55,824 KB
testcase_06 AC 126 ms
55,856 KB
testcase_07 AC 127 ms
55,440 KB
testcase_08 AC 128 ms
55,688 KB
testcase_09 AC 127 ms
56,068 KB
testcase_10 AC 128 ms
55,808 KB
testcase_11 AC 128 ms
55,824 KB
testcase_12 AC 127 ms
55,756 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