結果
問題 | No.1291 小手調べ |
ユーザー |
![]() |
提出日時 | 2020-11-24 09:35:07 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 |
ソースコード
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); } }