結果
| 問題 | No.1942 Leading zero |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-10 22:51:08 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 127 ms / 2,000 ms |
| + 608µs | |
| コード長 | 455 bytes |
| 記録 | |
| コンパイル時間 | 1,228 ms |
| コンパイル使用メモリ | 82,988 KB |
| 実行使用メモリ | 45,796 KB |
| 最終ジャッジ日時 | 2026-07-25 12:15:17 |
| 合計ジャッジ時間 | 2,537 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 1 |
ソースコード
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] num = new int[n];
for(int i = 0; i < n; i++) {
num[i] = Integer.parseInt(br.readLine());
}
for(int i = 0; i < n; i++) System.out.println(num[i]);
}
}