5 条题解

  • 1
    @ 2022-11-28 11:06:09

    提交者:@

    #include <iostream>
    using namespace std;
    void cxk(int c,int n) {
    	while (c--) {
    		cout << n;
    	}
    	cout << endl;
    }
    int dlq(int basketball,int xhz) {
    	if (basketball<0) {
    		basketball-=2*basketball;
    	}
    	if (xhz<0) {
    		xhz-=2*xhz;
    	}
    	return basketball-xhz;
    }
    int main() {
    	int a,b,c;
    	cin >> a >> b >> c;
    	cxk(dlq(a,b),c);
    	return 0;
    }
    

信息

ID
10
时间
1000ms
内存
256MiB
难度
4
标签
递交数
52
已通过
25
上传者