結果

問題 No.1619 Coccinellidae
ユーザー keijakkeijak
提出日時 2021-07-23 19:13:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-07-18 14:25:44
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 68 ms
80,128 KB
testcase_02 WA -
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 67 ms
81,528 KB
testcase_05 WA -
testcase_06 AC 33 ms
52,480 KB
testcase_07 AC 58 ms
79,360 KB
testcase_08 WA -
testcase_09 AC 33 ms
51,968 KB
testcase_10 AC 52 ms
74,752 KB
testcase_11 WA -
testcase_12 AC 33 ms
52,224 KB
testcase_13 AC 61 ms
81,408 KB
testcase_14 WA -
testcase_15 AC 33 ms
52,608 KB
testcase_16 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
v = [i for i in range(n)]
sv = sum(v)
assert(sv <= m)
v[n-1] += m - sv
a = [-1 for i in range(n)]

for i in range(n):
    r = n - 1 - i
    if k <= r:
        p = (n-1) - k
        a[p] = v[r]
        break
    a[i] = v[r]
cur = 0
for i in range(n):
    if a[i] != -1:
        continue
    a[i] = v[cur]
    cur += 1

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