結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2016-11-07 00:11:06 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 287 bytes |
コンパイル時間 | 2,046 ms |
コンパイル使用メモリ | 75,648 KB |
実行使用メモリ | 55,596 KB |
最終ジャッジ日時 | 2024-11-25 03:27:50 |
合計ジャッジ時間 | 2,723 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 4 |
ソースコード
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(); } }