結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,552 KB
testcase_01 AC 152 ms
41,544 KB
testcase_02 AC 156 ms
41,364 KB
testcase_03 AC 154 ms
41,428 KB
testcase_04 AC 148 ms
41,800 KB
testcase_05 AC 150 ms
41,392 KB
testcase_06 AC 148 ms
41,372 KB
testcase_07 AC 152 ms
41,596 KB
testcase_08 AC 156 ms
41,704 KB
testcase_09 AC 153 ms
41,488 KB
testcase_10 AC 150 ms
41,132 KB
testcase_11 AC 148 ms
41,428 KB
testcase_12 AC 146 ms
41,208 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