結果

問題 No.9000 Hello World! (テスト用)
ユーザー threepipes_sthreepipes_s
提出日時 2014-11-16 23:14:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 577 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 72,520 KB
実行使用メモリ 49,752 KB
最終ジャッジ日時 2023-08-30 07:25:40
合計ジャッジ時間 3,214 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,340 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class Main {

	public static void main(String[] args){
		//		Scanner sc = new Scanner(System.in);
		BufferedReader input
		= new BufferedReader(new InputStreamReader(System.in));
		try{
			String tmp0[] = input.readLine().trim().split(" ");
			int n = Integer.parseInt(tmp0[0]);

			System.out.println("Hello World!");
		}catch(IOException e){
			e.printStackTrace();
		}
	}

}
0