結果
問題 | No.1291 小手調べ |
ユーザー | tenten |
提出日時 | 2020-11-24 09:35:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 150 ms / 2,000 ms |
コード長 | 480 bytes |
コンパイル時間 | 6,075 ms |
コンパイル使用メモリ | 84,272 KB |
実行使用メモリ | 54,340 KB |
最終ジャッジ日時 | 2024-07-23 18:25:36 |
合計ジャッジ時間 | 5,230 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,072 KB |
testcase_01 | AC | 146 ms
54,340 KB |
testcase_02 | AC | 145 ms
54,268 KB |
testcase_03 | AC | 150 ms
54,032 KB |
testcase_04 | AC | 141 ms
54,060 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { int d = sc.nextInt(); if (d == 1) { sb.append(10); } else { sb.append(9); for (int j = 1; j < d; j++) { sb.append(0); } } sb.append("\n"); } System.out.print(sb); } }