結果
| 問題 | No.9000 Hello World! (テスト用) |
| ユーザー |
|
| 提出日時 | 2014-11-26 18:22:59 |
| 言語 | Java (openjdk 25.0.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 706 bytes |
| 記録 | |
| コンパイル時間 | 2,243 ms |
| コンパイル使用メモリ | 81,288 KB |
| 実行使用メモリ | 62,576 KB |
| 最終ジャッジ日時 | 2026-01-04 17:27:01 |
| 合計ジャッジ時間 | 14,645 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 3 |
ソースコード
class Main1000 {
public static void main(String[] args) {
Main1000 p = new Main1000();
}
public Main1000() {
System.out.println("Hello World!");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
solve();
}
public void solve() {
}
}
class Main1001{
public static void main(String[] args) {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Hello World!");
}
}
class Main1002{
public static void main(String[] args) {
System.out.println("Hello World!");
}
}