6 条题解

  • 1
    @ 2023-7-14 16:29:42
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    int n=100;
    while((n%3==2&&n%5==3&&n%7==5)!=1)
    n++;
    cout<<n;
    return 0;
    }
    ```
    

    信息

    ID
    9
    时间
    1000ms
    内存
    16MiB
    难度
    4
    标签
    递交数
    327
    已通过
    148
    上传者