結果
問題 | No.1291 小手調べ |
ユーザー |
|
提出日時 | 2020-11-20 21:34:40 |
言語 | Kotlin (1.6.10) |
結果 |
AC
|
実行時間 | 235 ms / 2,000 ms |
コード長 | 905 bytes |
コンパイル時間 | 12,680 ms |
使用メモリ | 45,968 KB |
最終ジャッジ日時 | 2023-02-23 17:59:21 |
合計ジャッジ時間 | 12,857 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge15 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 232 ms
45,860 KB |
testcase_01 | AC | 235 ms
45,968 KB |
testcase_02 | AC | 223 ms
45,336 KB |
testcase_03 | AC | 233 ms
45,592 KB |
testcase_04 | AC | 214 ms
44,372 KB |
ソースコード
import java.io.BufferedReader import java.io.InputStream import java.io.InputStreamReader import java.io.PrintWriter import java.util.* fun PrintWriter.solve(sc: FastScanner) { val n = sc.nextInt() for (_i in 0 until n) { val d = sc.nextInt() println(if (d == 1) 10 else "9" + "0".repeat(d - 1)) } } fun main() { val writer = PrintWriter(System.out, false) writer.solve(FastScanner(System.`in`)) writer.flush() } class FastScanner(s: InputStream) { private var st = StringTokenizer("") private val br = BufferedReader(InputStreamReader(s)) fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() fun ready() = br.ready() }