結果

問題 No.9000 Hello World! (テスト用)
ユーザー fog_878fog_878
提出日時 2019-03-15 21:36:20
言語 Java19
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 4,206 ms
コンパイル使用メモリ 71,480 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2023-09-14 13:08:32
合計ジャッジ時間 5,685 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,736 KB
testcase_01 AC 120 ms
55,888 KB
testcase_02 AC 120 ms
55,676 KB
testcase_03 AC 122 ms
55,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Main main = new Main();
		main.solve();
	}

	void solve() {
		Scanner sc = new Scanner(System.in);
		sc.next();
		sc.close();

		System.out.println("Hello World!");
	}

}
0