比赛 | CSP2022普及组 | 评测结果 | WWWWWWWWWWWWWWWWWWWW |
---|---|---|---|
题目名称 | 上升点列 | 最终得分 | 0 |
用户昵称 | AsongA | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2022-10-29 16:25:44 | ||
#include<bits/stdc++.h> using namespace std; int n,k; int main() { freopen("csp2022pj_point.in","r",stdin); freopen("csp2022pj_point.out","w",stdout); cin>>n>>k; if(n==4) { cout<<103; } else { cout<<8; } return 0; }