結果

問題 No.9000 Hello World! (テスト用)
ユーザー scache
提出日時 2014-11-26 18:22:59
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 7,617 ms
コンパイル使用メモリ 75,600 KB
実行使用メモリ 66,692 KB
最終ジャッジ日時 2025-02-15 00:21:24
合計ジャッジ時間 20,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other TLE * 1 -- * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

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!");
	}
}
0