結果

問題 No.1619 Coccinellidae
ユーザー googol_S0googol_S0
提出日時 2021-07-22 21:26:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 88,284 KB
最終ジャッジ日時 2024-07-17 16:18:16
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,952 KB
testcase_01 AC 70 ms
84,828 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,136 KB
testcase_04 AC 74 ms
87,820 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,120 KB
testcase_07 AC 66 ms
82,652 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,360 KB
testcase_10 AC 62 ms
78,084 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,432 KB
testcase_13 AC 78 ms
87,616 KB
testcase_14 WA -
testcase_15 AC 37 ms
52,124 KB
testcase_16 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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