9 条题解

  • 0
    @ 2022-10-3 23:46:45
    #include <iostream>
    #include <string.h>
    #include <stdio.h>
    #include <algorithm>
    using namespace std;
    int main() {
    int n;
    cin>>n;
    for(int j=3;j<=n;j++)
    {
    if( j % 3 == 0 )
    {
    cout<
    }
    return 0;
    }
    -
    

    信息

    ID
    35
    时间
    1000ms
    内存
    128MiB
    难度
    2
    标签
    递交数
    2575
    已通过
    1527
    上传者