結果
| 問題 |
No.964 2020
|
| コンテスト | |
| ユーザー |
numatanumanuma
|
| 提出日時 | 2020-03-10 05:40:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 124 bytes |
| コンパイル時間 | 100 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-15 23:04:05 |
| 合計ジャッジ時間 | 2,403 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 8 |
ソースコード
N = int(input())
l = list(range(10))
l = l[::-1]
print(l)
ans = ''
for i in range(N):
ans += str(l[i]) * N
print(ans)
numatanumanuma