結果

問題 No.9000 Hello World! (テスト用)
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 14:20:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,861 ms
コンパイル使用メモリ 71,172 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2023-09-06 18:20:19
合計ジャッジ時間 3,887 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.Scanner;

public class No5 {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        String s = sc.next();

//        // int 1つ分を読み込む
//        int b = sc.nextInt();
//
//        // String 1つ分を読み込む
//        int[]  = sc.next();

        // 標準出力に書き出す。
        System.out.println("Hello World!");
	}
}
0