結果
| 問題 | 
                            No.3159 Just Answer 10 Integers!
                             | 
                    
| コンテスト | |
| ユーザー | 
                            👑  | 
                    
| 提出日時 | 2025-05-23 20:34:33 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 183 bytes | 
| コンパイル時間 | 374 ms | 
| コンパイル使用メモリ | 82,592 KB | 
| 実行使用メモリ | 54,004 KB | 
| 最終ジャッジ日時 | 2025-05-23 20:34:35 | 
| 合計ジャッジ時間 | 2,546 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 | 
| other | AC * 1 WA * 8 | 
ソースコード
def main():
    n = int(input())
    res = 1
    ans = []
    for i in range(1, n+1):
        res *= i
        ans.append(res)
    print(*ans)
if __name__ == "__main__":
    main()