結果
問題 | No.1942 Leading zero |
ユーザー | ks2m |
提出日時 | 2022-05-20 23:45:06 |
言語 | Java21 (openjdk 21) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
41,112 KB |
testcase_01 | AC | 124 ms
41,384 KB |
testcase_02 | AC | 243 ms
46,296 KB |
ソースコード
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(); } }