結果
| 問題 |
No.964 2020
|
| コンテスト | |
| ユーザー |
もぐら 3.0
|
| 提出日時 | 2023-11-15 16:20:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 37 ms / 2,020 ms |
| コード長 | 180 bytes |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-09-26 04:37:58 |
| 合計ジャッジ時間 | 1,057 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
N = int(input())
if N ==1:
print(2)
else:
ans=""
for i in range(1,N+1):
if i==10:
ans+=str(0)
else:
ans+=str(i)
print(ans*N)
もぐら 3.0