結果
| 問題 |
No.1942 Leading zero
|
| コンテスト | |
| ユーザー |
ks2m
|
| 提出日時 | 2022-05-20 23:45:06 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 243 ms / 2,000 ms |
| コード長 | 362 bytes |
| コンパイル時間 | 3,597 ms |
| コンパイル使用メモリ | 74,580 KB |
| 実行使用メモリ | 46,296 KB |
| 最終ジャッジ日時 | 2024-09-20 10:12:00 |
| 合計ジャッジ時間 | 2,948 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 1 |
ソースコード
import java.io.PrintWriter;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
PrintWriter pw = new PrintWriter(System.out);
for (int i = 0; i < n; i++) {
pw.println(Integer.parseInt(sc.next(), 10));
}
pw.flush();
sc.close();
}
}
ks2m