結果
| 問題 | No.964 2020 |
| コンテスト | |
| ユーザー |
otsuri_114514
|
| 提出日時 | 2020-01-16 23:41:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 83 bytes |
| 記録 | |
| コンパイル時間 | 451 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-03-10 20:05:31 |
| 合計ジャッジ時間 | 2,198 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 1 |
ソースコード
n=int(input())
ans=""
for i in reversed(range(1,n+1)):
ans+=str(i)*n
print(ans)
otsuri_114514