1 条题解

  • 0
    @ 2026-5-17 14:29:23
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin >> n;
        for(int i = n; i <= 3500; i++){
            if(i % 4 == 2){
                cout << i;
                return 0;
            }
        }
        return 0;
    }
    • 1

    信息

    ID
    9917
    时间
    2000ms
    内存
    1024MiB
    难度
    3
    标签
    递交数
    31
    已通过
    20
    上传者