Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
111928 毛泓博(做题专用,大号Fess) 求最长不下降序列 C++ 解答错误 0 0 MS 248 KB 380 2023-11-25 09:10:24

Tests(0/10):


#include<bits/stdc++.h> using namespace std; int n; int main() { cin>>n; if(n==1) { cout<<0; return 0; } if(n==2) { cout<<1; return 0; } if(n==3) { cout<<2; return 0; } switch(n%3) { case 0: cout<<(n/3)*(n/3)*(n/3); break; case 1: cout<<(n/3)*(n/3)*(n/3+1); break; case 2: cout<<(n/3)*(n/3)*(n/3+2); break; } return 0; }


测评信息: