結果

問題 No.1402 ビル街
ユーザー trineutrontrineutron
提出日時 2021-02-20 08:04:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 27 ms / 3,153 ms
コード長 115 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-17 10:14:33
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = [i for i in range(n + 2)]
ans[0] = 2 * 10**9
ans[-1] = 2 * 10**9
ans[1] = n + 1
print(*ans)
0