CF #800 Div. 2 & CF #797 Div. 3 游记-2022.6.21
作者:互联网
啊这,教练分了 $Div$
但是 $Div 3$ 我是打过的
所以自然……
然后
其实 $Div 3$ 最后 $F$ 题手滑数组开大T了不然我是rk1……
那就写两个吧……
CF #800 Div 2
A. Creep
这不就暴力模拟么……
顺带提一嘴 vjudge 崩掉了然后第一遍没交上(
#include<cstdio> #include<string> #include<cstring> #define WR WinterRain using namespace std; int t,a,b; int read(){ int s=0,w=1; char ch=getchar(); while(ch>'9'||ch<'0'){ if(ch=='-') w=-1; ch=getchar(); } while(ch>='0'&&ch<='9'){ s=(s<<3)+(s<<1)+ch-'0'; ch=getchar(); } return s*w; } int main(){ t=read(); while(t--){ a=read(),b=read(); for(int i=1;i<=min(a,b);i++){ printf("01"); } for(int i=1;i<=abs(a-b);i++){ if(a<b) printf("1"); else printf("0"); } printf("\n"); } return 0; }View Code
标签:797,ch,int,CF,Div,include,800 来源: https://www.cnblogs.com/WintersRain/p/16397941.html