ZOJ 3776: Pokemon Master
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 3776: Pokemon Master相关的知识,希望对你有一定的参考价值。
///@author Sycamore, ZJNU ///@submitted_on 2017 - 01 - 17 /// #include<iostream> using namespace std; int main() { int T; cin >> T; while (T--) { int N, M, w1 = 0, w2 = 0, t; cin >> N >> M; while (N--) { cin >> t; w1 += t; } while (M--) { cin >> t; w2 += t; } if (w1 > w2)cout << "Calem" << endl; else if (w2 > w1)cout << "Serena" << endl; else cout << "Draw" << endl; } return 0; }
以上是关于ZOJ 3776: Pokemon Master的主要内容,如果未能解决你的问题,请参考以下文章