結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,068 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