3 条题解

  • -2
    @ 2023-5-25 18:08:13

    输入 aabb,输出 amodba \mod b

    这么难的题,只能用 C++ 逝世了(因为有人发 Python 了)。

    #include<bits/stdc++.h>
    using namespace std;
    #define int long long//大家不要学,坏习惯/cf 
    int a,b;
    main(){
    	ios::sync_with_stdio(false);
    	cin.tie(0);
    	cout.tie(0);
    	cin>>a>>b;
    	cout<<a%b;
    	return 0;
    }
    

    信息

    ID
    7
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    (无)
    递交数
    277
    已通过
    232
    上传者