結果

問題 No.1619 Coccinellidae
ユーザー rlangevinrlangevin
提出日時 2023-02-18 00:49:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-07-19 15:41:03
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 69 ms
81,920 KB
testcase_02 AC 75 ms
83,328 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 72 ms
83,712 KB
testcase_05 AC 67 ms
80,256 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 64 ms
78,992 KB
testcase_08 AC 72 ms
79,148 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 61 ms
76,288 KB
testcase_11 AC 69 ms
80,640 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 70 ms
83,608 KB
testcase_14 AC 75 ms
83,584 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
if N == 1:
    print(M)
    exit()
    
L = list(range(N - 1))
L.append(M - (N - 1) * (N - 2) // 2)
A, B = [], []
for i in range(N - 1, -1, -1):
    if K >= i and K:
        A.append(L[i])
        K -= i
    else:
        B.append(L[i])
        
B.reverse()
A.extend(B)
for a in A:
    print(a)
0