結果
| 問題 |
No.2560 A_1 < A_2 < ... < A_N
|
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2023-12-02 14:45:13 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 273 bytes |
| コンパイル時間 | 521 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 687,040 KB |
| 最終ジャッジ日時 | 2024-09-26 17:17:43 |
| 合計ジャッジ時間 | 4,034 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | MLE * 1 -- * 14 |
ソースコード
T = int(input())
for _ in range(T):
N,X = map(int, input().split())
n = N
ANS = []
i = 1
while n>1 or X>=i:
ANS.append(i)
X-=i
i+=1
n-=1
ANS[-1]+=X
if len(ANS)==N:
print(*ANS)
else:
print(-1)
H20