結果

問題 No.2610 Decreasing LCMs
ユーザー gew1fw
提出日時 2025-06-12 18:22:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2025-06-12 18:22:48
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 3:
    print("21 24 144")
else:
    base = [21, 24, 144]
    current = 144
    for i in range(3, n):
        current *= 2
        base.append(current)
    print(' '.join(map(str, base)))
0