1 条题解
-
3
#include <bits/stdc++.h> using namespace std; int main() { int k1, k2, k3; cin >> k1 >> k2 >> k3; int t1, t2, t3; cin >> t1 >> t2 >> t3; int win = 0; if (t1 > k1) win++; if (t2 > k2) win++; if (t3 > k3) win++; if (win >= 1) { cout << "WIN" << endl; } else { cout << "LOSE" << endl; } return 0; }
- 1
信息
- ID
- 30999
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 3
- 标签
- (无)
- 递交数
- 38
- 已通过
- 23
- 上传者