結果
| 問題 | No.964 2020 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-06-19 16:25:28 |
| 言語 | Swift (6.2.3) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,020 ms |
| コード長 | 112 bytes |
| 記録 | |
| コンパイル時間 | 637 ms |
| コンパイル使用メモリ | 136,768 KB |
| 実行使用メモリ | 9,600 KB |
| 最終ジャッジ日時 | 2026-03-07 04:32:17 |
| 合計ジャッジ時間 | 1,150 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
let n = Int(readLine()!)
var s = ""
for i in 1...n!{
s += String(repeating: "\(10-i)", count: n!)
}
print(s)