結果

問題 No.1619 Coccinellidae
ユーザー keijakkeijak
提出日時 2021-07-23 19:27:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-07-18 14:40:09
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 111 ms
15,744 KB
testcase_02 AC 118 ms
17,152 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 131 ms
17,280 KB
testcase_05 AC 76 ms
14,592 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 91 ms
14,720 KB
testcase_08 AC 82 ms
14,592 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 76 ms
14,080 KB
testcase_11 AC 93 ms
15,360 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 124 ms
17,024 KB
testcase_14 AC 111 ms
17,152 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
a = [-1 for i in range(n)]

r = n
for i in range(n):
    r = n - 1 - i
    if k <= r:
        p = (n-1) - k
        a[p] = r
        break
    a[i] = r
    k -= r

cur = 0
for i in range(n):
    if a[i] != -1:
        continue
    a[i] = cur
    cur += 1

for i in range(n):
    if a[i] == n-1:
        a[i] += m - n*(n-1)//2
        break

print(*a, sep='\n')
0