結果

問題 No.1619 Coccinellidae
ユーザー convexineqconvexineq
提出日時 2021-07-22 22:51:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 85,928 KB
最終ジャッジ日時 2024-07-17 19:18:35
合計ジャッジ時間 7,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,820 KB
testcase_01 WA -
testcase_02 AC 614 ms
85,812 KB
testcase_03 AC 37 ms
52,528 KB
testcase_04 WA -
testcase_05 AC 126 ms
81,476 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 302 ms
81,092 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 441 ms
82,808 KB
testcase_12 AC 37 ms
52,824 KB
testcase_13 WA -
testcase_14 AC 294 ms
85,928 KB
testcase_15 AC 38 ms
52,624 KB
testcase_16 AC 38 ms
52,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
r = []
for i in range(1,n+1):
    v = min(i-1,k)
    r.insert(i-1-v,i)
    k -= v
r[r.index(n)] += m - sum(r)
print(*r,sep="\n")
0