結果

問題 No.9000 Hello World! (テスト用)
ユーザー ぴろずぴろず
提出日時 2016-11-07 00:11:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 287 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 80,192 KB
実行使用メモリ 53,732 KB
最終ジャッジ日時 2024-05-03 22:27:29
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package f;

public class Main implements Runnable {

	public static void main(String[] args) {
		Thread.setDefaultUncaughtExceptionHandler((t,e)->System.exit(1));
		new Thread(null, new Main(), "", 8L * 1024 * 1024).start();
	}

	public void run() {
		throw new RuntimeException();
	}
}
0