11 2020 档案

摘要:7-7 矩阵A乘以B (15分) 我写的代码: #include<bits/stdc++.h>using namespace std;#define N 1000#define ll long longint a[N][N];int b[N][N];int c[N][N];int main(){ i 阅读全文
posted @ 2020-11-22 21:27 CHUNIN 阅读(90) 评论(0) 推荐(0)
摘要:C - C CodeForces - 136C 我忘记了输入2时,输出一 错误代码 #include<bits/stdc++.h>using namespace std;#define ll long longconst int N=1e6+7;ll a[N];int main(){int n;ci 阅读全文
posted @ 2020-11-15 22:04 CHUNIN 阅读(54) 评论(0) 推荐(0)
摘要:7-3 大笨钟 (10分) #include<bits/stdc++.h>using namespace std;#define ll long long#define N 100000int a[N];int main(){int hour,minue;scanf("%0d:%0d",&hour, 阅读全文
posted @ 2020-11-08 21:27 CHUNIN 阅读(86) 评论(0) 推荐(0)
摘要:D - D CodeForces - 758A 找每个与最大的差值即可 #include<bits/stdc++.h> using namespace std;#define ll long longconst int N=1e4+7;int a[N];int main(){int n;cin>>n 阅读全文
posted @ 2020-11-01 21:57 CHUNIN 阅读(50) 评论(0) 推荐(0)