結果

問題 No.1619 Coccinellidae
ユーザー googol_S0googol_S0
提出日時 2021-07-22 21:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-07-17 16:33:48
合計ジャッジ時間 2,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 73 ms
84,796 KB
testcase_02 AC 78 ms
88,064 KB
testcase_03 AC 38 ms
52,004 KB
testcase_04 AC 76 ms
87,516 KB
testcase_05 AC 67 ms
82,432 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 68 ms
82,816 KB
testcase_08 AC 69 ms
82,148 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 62 ms
78,080 KB
testcase_11 AC 70 ms
84,344 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 74 ms
87,056 KB
testcase_14 AC 76 ms
88,000 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
A=list(range(N))
A[-1]+=M-sum(A)
ANS=[]
F=0
for i in range(N):
  if i<=K:
    ANS.append(A[i])
    K-=i
    if K==0:
      ANS=ANS[::-1]
      F=1
  elif K==0:
    ANS.append(A[i])
  else:
    ANS.insert(K,A[i])
    ANS=ANS[::-1]
    K=0
    F=1
if F==0:
  ANS=ANS[::-1]
print(*ANS,sep='\n')
0