結果
| 問題 | No.2610 Decreasing LCMs |
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 13:03:54 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,360 KB |
| 最終ジャッジ日時 | 2026-07-11 08:36:57 |
| 合計ジャッジ時間 | 4,577 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 22 |
ソースコード
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)))
gew1fw