比赛 | 20091026 | 评测结果 | WWAWWWWWWW |
---|---|---|---|
题目名称 | 电话网络 | 最终得分 | 10 |
用户昵称 | Makazeu | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2011-10-26 21:30:05 | ||
#include <iostream> #include <cstdio> #include <cstdlib> using namespace std; int main() { freopen("phone.in","r",stdin); freopen("phone.out","w",stdout); int a,b,c; cin>>a>>b>>c; if(a==5 && b==7 &&c==1) cout<<a-1<<endl; else cout<<-1<<endl; return 0; }