結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,072 KB
testcase_01 AC 83 ms
86,204 KB
testcase_02 AC 95 ms
89,028 KB
testcase_03 WA -
testcase_04 AC 82 ms
89,196 KB
testcase_05 AC 86 ms
84,132 KB
testcase_06 AC 42 ms
54,860 KB
testcase_07 AC 74 ms
83,860 KB
testcase_08 AC 79 ms
83,284 KB
testcase_09 WA -
testcase_10 AC 73 ms
82,336 KB
testcase_11 AC 87 ms
85,144 KB
testcase_12 AC 40 ms
54,948 KB
testcase_13 AC 83 ms
88,984 KB
testcase_14 AC 95 ms
87,276 KB
testcase_15 AC 40 ms
54,400 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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
  else:
    a=[]
    while len(l)>0:
      a+=[l.popleft()]
    while len(r)>0:
      a+=[r.popleft()]
    break
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