結果
| 問題 | No.9000 Hello World! (テスト用) |
| ユーザー |
|
| 提出日時 | 2018-11-29 15:17:11 |
| 言語 | Java (openjdk 25.0.1) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
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));
}
}
}