結果

問題 No.3159 Just Answer 10 Integers!
ユーザー 回転
提出日時 2025-05-23 21:58:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 81,660 KB
実行使用メモリ 53,668 KB
最終ジャッジ日時 2025-05-23 21:58:04
合計ジャッジ時間 1,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

p = [2,3,5,7,11,13,17,19,23]
all = 1
for i in p:all *= i

S = [all]
for i in p:
    S.append(all//i)
print(*S[:N])
0