結果

問題 No.3159 Just Answer 10 Integers!
ユーザー ゼット
提出日時 2025-05-23 19:19:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 925 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 53,260 KB
最終ジャッジ日時 2025-05-23 19:19:28
合計ジャッジ時間 1,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

p=[2,3,5,7,11,13,17,19,23]
x=1
for y in p:
  x*=y
N=int(input())
result=[0]*N
result[0]=x
for i in range(1,N):
  result[i]=x//p[i-1]
print(*result)
0