记录编号 | 416114 | 评测结果 | AAAAA | ||
---|---|---|---|---|---|
题目名称 | [HZOI 2016]MC之旅:合作出击 | 最终得分 | 100 | ||
用户昵称 | FoolMike | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.014 s | ||
提交时间 | 2017-06-19 18:25:38 | 内存使用 | 0.29 MiB | ||
#include<cstdio> #include<algorithm> using namespace std; typedef long long ll; int T;ll n; int main() { freopen("T5_.in","r",stdin); freopen("T5_.out","w",stdout); scanf("%d",&T); while (T--){ scanf("%lld",&n); for (;n;n>>=2) if ((n&3)&&(n&3)!=2){ puts("miner win"); goto end; } puts("miner lose"); end:; } return 0; }