【LGR-(-17)】洛谷入门赛 #8 个人赛后总结
前言
这是本蒟蒻的第一篇博客,也是对第一次参加洛谷比赛的总结,如果有错误请指出。
引子
本蒟蒻第一次看到比赛时就迫不及待的报了名,结果。。。考的一塌糊涂。
T1
题目:T306713 铺地毯
得分:480(8ms)(这也是本蒟蒻唯一一道$\color{green}\text{AC}$的题)
比较简单的一道题,就是一道纯粹的模拟题,但是只有480
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x,mod;
cin>>x;
mod=x%2023;
if(mod<0)
{
mod=mod+2023;
}
cout<<mod;
return 0;
}
希望大佬私信帮忙指出错误
T2
题目:T306714 铺地毯
得分:182(1、2、3$\color{green}\text{AC}$、4,5,7,8,9,10$\color{blue}\text{UKE}$、6$\color{red}\text{WA}$)可真是五彩缤纷。。。
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
long long s1,s2;
cin>>a>>b>>c;
s1=a*b;
s2=c*c;
if(s1%s2==0)
{
cout<<s1/s2;
}
else
{
cout<<"-1";
}
return 0;
}
希望大佬私信帮忙指出错误
T3
题目:T306715 一次函数
得分:255(1、2、3$\color{green}\text{AC}$、4,5,6,7,8,9,10$\color{blue}\text{UKE}$)无语至极。。。
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,b,k,x[100001],y[100001],a,num=0;
cin>>n>>k>>b;
for(int i=1;i<=n;i++)
{
cin>>x[i]>>y[i];
}
for(int i=1;i<=n;i++)
{
a=k*x[i]+b;
if(a==y[i])
{
num++;
}
}
cout<<num;
return 0;
}
希望大佬私信帮忙指出错误
T4
题目:T306716 就要 62
得分:600(3,5,6,8,9,10$\color{green}\text{AC}$、1,2,4,7$\color{red}\text{WA}$)这道题就不贴代码了,知道数据的人都知道我骗了分
T5
题目:T306717 九九乘方表
得分:310(1、2$\color{green}\text{AC}$、3,4,5,6,7,8,9,10$\color{red}\text{WA}$)无话可说了。。。
#include <bits/stdc++.h>
using namespace std;
int main()
{
long long k;
int i,j,n;
cin>>n;
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
k=pow(i,j);
cout<<i<<" "<<"^"<<" "<<j<<" "<<"="<<setw(2)<<setfill(' ')<<k<<" ";
}
cout<<endl;
}
return 0;
}
希望大佬私信帮忙指出错误
T6
不会
T7
不会
T8
不会
T9
到最后都没有看懂Hack是什么意思
希望大佬私信讲解
总结
这是本蒟蒻打的第一场比赛,名次1196(是不是很菜)这场比赛其实一开始$\color{blue}\text{UKE}$我就慌了,下次比赛(如果还有下次)还是要更稳重一点,希望自己能够更强一点吧。
谢谢观看
如果你看到了这里,点个赞好吗?
标签:私信,AC,洛谷,17,color,text,int,green,LGR From: https://www.cnblogs.com/ABBAawa/p/17153820.html