結果
| 問題 | No.2609 Decreasing GCDs |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-01-19 22:01:06 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 273 ms |
| コンパイル使用メモリ | 85,300 KB |
| 実行使用メモリ | 54,424 KB |
| 最終ジャッジ日時 | 2026-04-14 21:11:51 |
| 合計ジャッジ時間 | 6,097 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 22 |
ソースコード
def solve(N):
return [2**i for i in range(1, N+1)]
N = int(input())
result = solve(N)
print(' '.join(map(str, result)))