結果
| 問題 | No.2610 Decreasing LCMs |
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2024-01-19 23:56:37 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 58 ms / 1,000 ms |
| + 253µs | |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 96,072 KB |
| 実行使用メモリ | 78,980 KB |
| 最終ジャッジ日時 | 2026-09-05 12:51:10 |
| 合計ジャッジ時間 | 3,267 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 22 |
ソースコード
lis=[3,4,8]
N=int(input())
while len(lis)<N:
for i in range(len(lis)):
lis[i]*=2
lis=[lis[0]-1]+lis
print(*lis)
nikoro256