結果

問題 No.1619 Coccinellidae
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-26 18:06:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,608 KB
最終ジャッジ日時 2024-07-05 15:41:04
合計ジャッジ時間 2,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 68 ms
80,208 KB
testcase_02 AC 68 ms
81,608 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 66 ms
81,024 KB
testcase_05 AC 67 ms
79,232 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 57 ms
76,768 KB
testcase_08 AC 58 ms
76,336 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 55 ms
74,368 KB
testcase_11 AC 65 ms
79,616 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 67 ms
81,028 KB
testcase_14 AC 68 ms
81,356 KB
testcase_15 AC 35 ms
51,712 KB
testcase_16 AC 36 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
A = [i for i in range(n)]
A[-1] += m-sum(A)
ans = [-1]*n
j = 0
for i, a in enumerate(A):
    if k != 0:
        if k >= n-i-1:
            ans[-1-i] = a
            k -= n-i-1
        else:
            ans[k] = a
            k = 0
    else:
        while ans[j] != -1:
            j += 1
        ans[j] = a
        j += 1
print(*ans, sep='\n')
0