結果
| 問題 |
No.964 2020
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-15 11:33:09 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 84 bytes |
| コンパイル時間 | 156 ms |
| コンパイル使用メモリ | 82,380 KB |
| 実行使用メモリ | 53,496 KB |
| 最終ジャッジ日時 | 2024-11-21 10:43:28 |
| 合計ジャッジ時間 | 1,252 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 1 |
ソースコード
n = int(input())
result=''
for i in range(1,n+1):
result+=str(i)*n
print(result)