結果

問題 No.1619 Coccinellidae
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-30 17:57:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-06-30 17:57:47
合計ジャッジ時間 3,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 80 ms
86,344 KB
testcase_02 WA -
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 87 ms
89,216 KB
testcase_05 WA -
testcase_06 AC 42 ms
53,816 KB
testcase_07 AC 75 ms
83,712 KB
testcase_08 WA -
testcase_09 AC 42 ms
54,016 KB
testcase_10 AC 76 ms
82,048 KB
testcase_11 WA -
testcase_12 AC 41 ms
53,632 KB
testcase_13 AC 83 ms
88,832 KB
testcase_14 WA -
testcase_15 AC 40 ms
53,888 KB
testcase_16 AC 41 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
k=(n*(n-1))//2-k
a=list(range(n-1))
a+=[m-sum(a)]
a=a[::-1]
from collections import deque
l=deque(a)
r=deque([])
for i in range(n-1):
  if k-(n-1-i)>=0:
    r.appendleft(l.popleft())
    k-=n-1-i
a=[]
while len(l)>0:
  a+=[l.popleft()]
while len(r)>0:
  a+=[r.popleft()]
for i in range(n-1):
  if a[i]>a[i+1] and k>0:
    a[i],a[i+1]=a[i+1],a[i]
    k-=1
print(*a,sep="\n")
0