結果
| 問題 | No.2560 A_1 < A_2 < ... < A_N |
| コンテスト | |
| ユーザー |
miztom
|
| 提出日時 | 2024-03-13 01:52:25 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 229 ms / 2,000 ms |
| + 511µs | |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 242 ms |
| コンパイル使用メモリ | 95,436 KB |
| 実行使用メモリ | 90,112 KB |
| 最終ジャッジ日時 | 2026-09-06 07:55:35 |
| 合計ジャッジ時間 | 4,386 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 |
ソースコード
for i in range(int(input())):
n,x=map(int,input().split())
if n*n+n>x*2:print(-1)
else:print(*range(1,n),x-sum(range(n)))
miztom