結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | ぴろず |
提出日時 | 2016-11-07 00:11:06 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 287 bytes |
コンパイル時間 | 2,046 ms |
コンパイル使用メモリ | 75,648 KB |
実行使用メモリ | 55,596 KB |
最終ジャッジ日時 | 2024-11-25 03:27:50 |
合計ジャッジ時間 | 2,723 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
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(); } }