結果
| 問題 |
No.1291 小手調べ
|
| コンテスト | |
| ユーザー |
semisagi
|
| 提出日時 | 2020-11-20 21:21:40 |
| 言語 | Swift (6.0.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 812 bytes |
| コンパイル時間 | 11,600 ms |
| コンパイル使用メモリ | 127,932 KB |
| 実行使用メモリ | 9,216 KB |
| 最終ジャッジ日時 | 2024-07-23 12:29:51 |
| 合計ジャッジ時間 | 12,104 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 3 |
ソースコード
struct Scanner {
private var elements = [String]()
private var index = 0
mutating func peek() -> String {
while elements.count == index {
elements = readLine()!.split(separator: " ").map(String.init)
index = 0
}
return elements[index]
}
mutating func next() -> String {
defer { index += 1 }
return peek()
}
mutating func nextInt() -> Int {
return Int(next())!
}
mutating func nextInts(_ n: Int) -> [Int] {
return (0 ..< n).map { _ in nextInt() }
}
mutating func nextDouble() -> Double {
return Double(next())!
}
}
var scanner = Scanner()
let N = scanner.nextInt()
for _ in 0 ..< N {
let d = scanner.nextInt()
print("9" + String(repeating: "0", count: d - 1))
}
semisagi