結果

問題 No.9000 Hello World! (テスト用)
ユーザー リチウムリチウム
提出日時 2014-11-04 23:16:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 196 bytes
コンパイル時間 3,718 ms
コンパイル使用メモリ 70,916 KB
実行使用メモリ 55,776 KB
最終ジャッジ日時 2023-08-29 00:32:57
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		System.out.println("Hello World!");
		}
}
0