結果
問題 |
No.2609 Decreasing GCDs
|
ユーザー |
|
提出日時 | 2024-02-03 18:15:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 130 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 55,168 KB |
最終ジャッジ日時 | 2024-09-28 10:56:48 |
合計ジャッジ時間 | 5,793 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 22 |
ソースコード
N = int(input()) ans = [2 ** (N - 2)] now = 2 ** (N - 1) for _ in range(N - 1): now //= 2 now *= 3 ans.append(now) print(*ans)