結果

問題 No.9000 Hello World! (テスト用)
ユーザー リチウムリチウム
提出日時 2014-11-16 18:40:50
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 200 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 71,784 KB
実行使用メモリ 55,824 KB
最終ジャッジ日時 2023-08-30 07:15:37
合計ジャッジ時間 4,990 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

public class Main {
	
				
	public static void main(String[] args) {
		Scanner sc=new Scanner (System.in);
		int s=sc.nextInt();
		System.out.println("Hello World!");
	}}
0