結果

問題 No.9000 Hello World! (テスト用)
ユーザー n_gojon_gojo
提出日時 2020-04-09 10:06:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 70,676 KB
実行使用メモリ 48,872 KB
最終ジャッジ日時 2023-09-28 21:51:05
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

public class Main {
    public static void main(String... args) {
        System.out.println("Hello World!");
        int i = 0;
        System.out.println(i);
        i++;
        System.out.println(i);

    }
}
0