結果
問題 | No.1942 Leading zero |
ユーザー | tenten |
提出日時 | 2022-05-23 17:02:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 1,057 bytes |
コンパイル時間 | 5,930 ms |
コンパイル使用メモリ | 75,168 KB |
実行使用メモリ | 40,160 KB |
最終ジャッジ日時 | 2024-09-20 13:14:28 |
合計ジャッジ時間 | 2,559 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,072 KB |
testcase_01 | AC | 48 ms
36,952 KB |
testcase_02 | AC | 122 ms
40,160 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { sb.append(sc.nextInt()).append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }