結果
| 問題 | 
                            No.3159 Just Answer 10 Integers!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2025-05-23 20:00:29 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 162 bytes | 
| コンパイル時間 | 518 ms | 
| コンパイル使用メモリ | 82,788 KB | 
| 実行使用メモリ | 53,788 KB | 
| 最終ジャッジ日時 | 2025-05-23 20:00:36 | 
| 合計ジャッジ時間 | 2,243 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 8 WA * 1 | 
ソースコード
N = int(input())
a = [2,3,5,7,11,13,17,19,23,29]
s = []
base = 1
for i in a[:N]:
    base *= i
ans = []
for i in range(N):
    ans.append(base//a[i])
print(*ans)