結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | threepipes_s |
提出日時 | 2014-11-16 23:14:41 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 577 bytes |
コンパイル時間 | 2,313 ms |
コンパイル使用メモリ | 74,680 KB |
実行使用メモリ | 50,504 KB |
最終ジャッジ日時 | 2024-12-31 21:19:15 |
合計ジャッジ時間 | 3,202 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
50,324 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
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(); } } }