結果

問題 No.1445 新入生プログラミング鯖
ユーザー eagleeagle
提出日時 2022-06-20 10:44:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-10-12 21:35:41
合計ジャッジ時間 4,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,012 KB
testcase_01 AC 130 ms
54,164 KB
testcase_02 AC 128 ms
53,864 KB
testcase_03 AC 133 ms
54,212 KB
testcase_04 AC 130 ms
54,044 KB
testcase_05 AC 118 ms
52,996 KB
testcase_06 AC 129 ms
53,936 KB
testcase_07 AC 129 ms
53,784 KB
testcase_08 AC 130 ms
54,060 KB
testcase_09 AC 122 ms
41,424 KB
testcase_10 AC 127 ms
41,376 KB
testcase_11 AC 128 ms
41,200 KB
testcase_12 AC 124 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		String ans = "Hello! You're new here, right? It's nice to meet you.";
		for(int i = 0; i < N; i++) {
			System.out.println(ans);
		}
	}
}
0