結果
問題 | No.1619 Coccinellidae |
ユーザー | keijak |
提出日時 | 2021-07-23 19:20:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-07-18 14:32:58 |
合計ジャッジ時間 | 2,044 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,624 KB |
testcase_01 | AC | 96 ms
16,256 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 118 ms
17,920 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 84 ms
15,232 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 72 ms
14,336 KB |
testcase_11 | RE | - |
testcase_12 | AC | 25 ms
10,752 KB |
testcase_13 | AC | 115 ms
17,664 KB |
testcase_14 | RE | - |
testcase_15 | AC | 24 ms
10,752 KB |
testcase_16 | RE | - |
ソースコード
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)] r = 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] k -= r r -= 1 cur = n-1 while r >= 0: assert a[cur] == -1 a[cur] = v[r] r -= 1 cur -= 1 print(*a, sep='\n')