結果

問題 No.9000 Hello World! (テスト用)
ユーザー ぴろず
提出日時 2016-11-07 00:10:51
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 72,992 KB
実行使用メモリ 52,592 KB
最終ジャッジ日時 2024-11-25 03:27:41
合計ジャッジ時間 2,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

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