結果

問題 No.9000 Hello World! (テスト用)
ユーザー mikitmikit
提出日時 2018-11-29 15:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 1,114 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 70,784 KB
実行使用メモリ 49,556 KB
最終ジャッジ日時 2023-09-09 05:52:35
合計ジャッジ時間 2,533 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,556 KB
testcase_01 AC 42 ms
49,184 KB
testcase_02 AC 43 ms
47,480 KB
testcase_03 AC 43 ms
49,340 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