結果

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

ソースコード

diff #

n = int(input())
ans = [2 * 10 ** 9, 10 ** 9] + list(range(2, n + 1)) + [2 * 10 ** 9]
print(*ans)
0