結果

問題 No.9000 Hello World! (テスト用)
ユーザー ringototearingototea
提出日時 2020-07-10 11:50:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 262 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-04-18 11:43:29
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;
import java.util.function.*;
import java.math.*;
public class Main {
    public static void main(String[] args){
        Scanner s = new Scanner(System.in);
		int X = Integer.valueOf(s.next());
        System.out.println("Hello World!");
	}
}
0