結果

問題 No.9000 Hello World! (テスト用)
ユーザー yuki2006yuki2006
提出日時 2015-11-29 20:52:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 76,556 KB
実行使用メモリ 50,064 KB
最終ジャッジ日時 2023-08-26 09:22:10
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,696 KB
testcase_01 AC 46 ms
49,452 KB
testcase_02 AC 45 ms
49,324 KB
testcase_03 AC 47 ms
50,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package hoge;
class A{
       public void main(String[] args){
       }
}
class B {
    public static void main(String[] args) {
        Runnable runnable = () -> {
            System.out.println("Hello World!");
        };
        runnable.run();
    }
}
class C{
       public static void main(String[] args){
       }
}
0