結果
| 問題 | No.2609 Decreasing GCDs |
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2024-01-19 21:32:10 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 63 ms / 1,000 ms |
| + 860µs | |
| コード長 | 121 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 95,816 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-09-05 11:59:53 |
| 合計ジャッジ時間 | 3,266 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 22 |
ソースコード
d = []
now = 1
for i in range(25):
d.append(2 ** (24 - i) * now)
now = 2 * now + 1
n = int(input())
print(*d[:n])
Kude