不与最大数相同的数字之和 摘要:解题思路:先把数列中的全部数相加,最后再减去最大值就ok了注意事项:注意范围参考代码:n = int(input())a = list(map(int,input().split()))sum=0fo…… 题解列表 2024年04月07日 0 点赞 0 评论 255 浏览 评分:0.0
2907: 不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;ll a[N…… 题解列表 2024年04月21日 0 点赞 0 评论 145 浏览 评分:0.0
编写题解 2907: 不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N,a[100],sum=0,x=0; …… 题解列表 2024年08月07日 0 点赞 0 评论 222 浏览 评分:0.0
题解 2907: 不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b[1000],sum=0; scanf(&qu…… 题解列表 2025年01月27日 1 点赞 0 评论 129 浏览 评分:0.0