2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:a = 0n,m = map(int,input().split())l = list(map(int,input().split()))for i in l: i…… 题解列表 2023年02月07日 0 点赞 0 评论 304 浏览 评分:0.0
与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m,a,i; int c=0; n<=1000; scanf("%d %d\n",&n,&m) ;…… 题解列表 2023年02月04日 0 点赞 0 评论 169 浏览 评分:0.0
与指定数字相同的数 摘要:解题思路:一维数组的应用注意事项:参考代码:#include<stdio.h>int main(){ int i,N,m,n,b=0; scanf("%d %d",&N,&m); int a[N]; …… 题解列表 2022年11月12日 0 点赞 0 评论 494 浏览 评分:2.0
与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,b=0; int a[100]; scanf("%d%d",&…… 题解列表 2023年01月13日 0 点赞 0 评论 193 浏览 评分:2.0
2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>typedef long long ll;const int N=1e5+5;ll a[N];using namespace…… 题解列表 2024年04月20日 0 点赞 0 评论 121 浏览 评分:2.0
2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:千万别抄,会遭报应的参考代码:#include <iostream>using namespace std;typedef long long ll;const int N=1e7…… 题解列表 2024年04月21日 1 点赞 0 评论 191 浏览 评分:6.0
菜鸡写法xxx 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月05日 0 点赞 2 评论 133 浏览 评分:7.3
有错误请指出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int N,M; scanf("%d %d",&N,&M); int a,i=1,c=0; w…… 题解列表 2022年12月20日 0 点赞 0 评论 401 浏览 评分:9.0
小学生水平题解 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int N, m, a; int s = 0; cin >> N …… 题解列表 2023年03月04日 0 点赞 0 评论 180 浏览 评分:9.9
2804: 与指定数字相同的数的个数 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a,b;int c[1000000];int main(){ int sum=0; …… 题解列表 2023年07月18日 0 点赞 0 评论 168 浏览 评分:9.9