[磋商]“请进来”文化外宣活动 成交公告

中标公告 发布日期:2026-06-01 地区:北京 项目编号:11000026210200174324-XM001 预算金额:¥1921000 中标供应商:尚亦城(北京)智慧融媒有限公司 实施地点:及中标成交金额 数据采集:2026/07/19 21:17

📊中标评审分析官方公示数据

代理服务费1.7447万元
评审专家邵华标、高飞、高波

🤖中标原因深度分析独家解读

014/1210_36

https://leetcode.com/problems/plus-one/

Given a non-empty array of decimal digits representing a non-negative integer, increment one to the integer. The digits are stored such that the most significant digit is at the head of the list, and each element in the array contains a single digit.

You may assume the integer does not contain any leading zero, except the number 0 itself.

Example 1:

Input: digits = [1,2,3]
Output: [1,2,4]
Explanation: The array represents the integer 123, after adding one, it becomes 124.
Example 2:

Input: digits = [4,3,2,1]
Output: [4,3,2,2]
Explanation: The array represents the integer 4321, after adding one, it becomes 4322.
Example 3:

Input: digits = [9]
Output: [1,0]
Explanation: The array represents the integer 9, after adding one, it becomes 10.

Constraints:

1 <= digits.length <= 100
0 <= digits[i] <= 9

class Solution:
def plusOne(self, digits: List[int]) -> List[int]:

l = len(digits)

if l == 1:
if digits[0] == 9:
return [1,0]
else:
return [digits[0]+1]
else:
i = l - 1
while i >= 0:
if digits[i] == 9:
digits[i] = 0
else:
digits[i] = digits[i] + 1
break
i -= 1

if i == -1:
return [1] + digits
else:
return digits

class Solution:
def plusOne(self, digits: List[int]) -> List[int]:

l = len(digits)

if l == 1:
if digits[0] == 9:
return [1,0]
else:
return [digits[0]+1]
else:
i = l - 1
while i >= 0:
if digits[i] == 9:
digits[i] = 0
else:
digits[i] = digits[i] + 1
break
i -= 1

if i == -1:
return [1] + digits
else:
return digits

📖 阅读完整分析文章 →

一、项目编号:11000026210200174324-XM001

二、项目名称:“请进来”文化外宣活动

三、中标(成交)信息

总中标成交金额:192.1 万元(人民币)

中标成交供应商名称、地址及中标成交金额:

中标成交供应商名称:尚亦城(北京)智慧融媒有限公司

中标成交供应商地址:北京市北京经济技术开发区企业文化园东路1号平房101

中标金额:192.1万元

供应商名称 供应商地址 统一信用代码 中标金额 中标成交备注信息
尚亦城(北京)智慧融媒有限公司 北京市北京经济技术开发区企业文化园东路1号平房101 91110400MA04BPEAXF 192.1 万元 评审总得分(综合评分法): 89.7 分

四、主要标的信息

供应商 商品名称 规格型号 数量 单价 总价 服务要求
尚亦城(北京)智慧融媒有限公司 1 192.1万元 192.1万元 详见磋商文件

详见磋商文件

五、评审专家(单一来源采购人员)名单:

邵华标、高飞、高波

六、代理服务收费标准及金额:

本项目代理费总金额:1.7447万元(人民币)

本项目代理费收费标准:

详见磋商文件。

七、公告期限

自本公告发布之日起1个工作日。

八、其它补充事宜

本公告在中国政府采购网(htt://pwww.ccgp.gov.cn)、北京市政府采购网(http://www.ccgpbii-ejng.gov.cn/)发布

九、凡对本次公告内容提出询问,请按以下方式联系。

1.采购人信息

名 称:中国共产党北京市委员会宣传部(本级)     

地址:北京市通州区运河东大街56号院        

联系方式:常老师,55569168      

2.采购代理机构信息

名 称:立信中德勤(北京)工程咨询有限公司            

地 址:立信中德勤(北京)工程咨询有限公司            

联系方式:闵雪萍,13520192929            

3.项目联系方式

项目联系人:闵雪萍

电 话:  13520192929

中小企业声明函.pdf

“请进来”文化外宣活动竞争性磋商文件最终版.pdf