結果
| 問題 |
No.1942 Leading zero
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-10 22:51:08 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 185 ms / 2,000 ms |
| コード長 | 455 bytes |
| コンパイル時間 | 1,876 ms |
| コンパイル使用メモリ | 73,392 KB |
| 実行使用メモリ | 40,984 KB |
| 最終ジャッジ日時 | 2024-06-11 13:38:03 |
| 合計ジャッジ時間 | 2,580 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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]);
}
}