結果

問題 No.1619 Coccinellidae
ユーザー nok0nok0
提出日時 2021-07-07 16:14:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-07-17 15:52:02
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 134 ms
14,464 KB
testcase_02 AC 161 ms
15,488 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 166 ms
15,488 KB
testcase_05 AC 103 ms
13,568 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 114 ms
13,440 KB
testcase_08 AC 105 ms
13,568 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 99 ms
13,184 KB
testcase_11 AC 123 ms
13,952 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 163 ms
15,104 KB
testcase_14 AC 154 ms
15,488 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
res = []
v = [1] * n
for i in range(n - 1, -1, -1):
    if i <= k:
        res.append(i)
        v[i] = 0
        k -= i
for i in range(n):
    if v[i]:
        res.append(i)
for i in range(n):
    if res[i] == n - 1:
        res[i] = m - (n - 1) * (n - 2) // 2
for x in res:
    print(x)
0