結果

問題 No.1619 Coccinellidae
ユーザー KudeKude
提出日時 2021-07-22 22:01:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 88,668 KB
最終ジャッジ日時 2024-07-17 17:49:13
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 79 ms
83,456 KB
testcase_02 AC 87 ms
88,668 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 72 ms
85,888 KB
testcase_05 AC 65 ms
81,964 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 65 ms
81,912 KB
testcase_08 AC 62 ms
80,128 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 59 ms
76,160 KB
testcase_11 AC 67 ms
84,224 KB
testcase_12 AC 37 ms
51,712 KB
testcase_13 AC 73 ms
85,900 KB
testcase_14 AC 74 ms
86,472 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
d = []
for i in range(n):
    if k >= len(d):
        k -= len(d)
        d.append(i)
    else:
        d = list(range(i + 1, n)[::-1]) + d[:k] + [i] + d[k:]
        break
d.reverse()
s = sum(d)
m -= s
d[d.index(n - 1)] += m
print(*d, sep='\n')
0