結果

問題 No.9000 Hello World! (テスト用)
ユーザー mikitmikit
提出日時 2018-11-29 15:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 1,114 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 72,676 KB
実行使用メモリ 37,236 KB
最終ジャッジ日時 2024-06-26 23:02:16
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,904 KB
testcase_01 AC 54 ms
36,880 KB
testcase_02 AC 54 ms
37,236 KB
testcase_03 AC 52 ms
37,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author mikit
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        LightScanner in = new LightScanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        No3030 solver = new No3030();
        solver.solve(1, in, out);
        out.close();
    }

    static class No3030 {
        public void solve(int testNumber, LightScanner in, PrintWriter out) {
            out.println("Hello World!");
            //out.println(IntMath.isPrime(in.longs()) ? YES : NO);
        }

    }

    static class LightScanner {
        private BufferedReader reader = null;

        public LightScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
        }

    }
}

0