Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
49419 | 112 | 【AB-1】函数 | C++ | 解答错误 | 0 | 0 MS | 236 KB | 199 | 2022-05-07 14:00:40 |
//function #include<bits/stdc++.h> using namespace std; int main() { int k1,k2,n,k; cin>>n>>k>>k1>>k2; if(k==0) cout<<0<<endl; else if(k1==0&&k2==k1) cout<<k<<endl; return 0; }