結果
| 問題 | No.2609 Decreasing GCDs |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-02-03 18:42:40 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 61 ms / 1,000 ms |
| + 889µs | |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 95,816 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2026-09-05 15:46:23 |
| 合計ジャッジ時間 | 3,337 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 22 |
ソースコード
N = int(input()) now = 2 ** (N - 2) ans = [now,now * 3] for _ in range(N - 2): t = ans[-1] now //= 2 ans.append((t // now + 1) * now) print(*ans)