結果
| 問題 | No.3159 Just Answer 10 Integers! | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-05-23 19:31:16 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 40 ms / 2,000 ms | 
| コード長 | 137 bytes | 
| コンパイル時間 | 304 ms | 
| コンパイル使用メモリ | 82,084 KB | 
| 実行使用メモリ | 53,440 KB | 
| 最終ジャッジ日時 | 2025-05-23 19:31:24 | 
| 合計ジャッジ時間 | 1,151 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 9 | 
ソースコード
a=[2,3,5,7,11,13,17,19,23]
cur=1
for e in a:cur*=e
v=[]
for e in a:
    v.append(cur//e)
v.append(cur)
N=int(input())
print(*v[:N])
            
            
            
        