本文主要是介绍我只会暴打学长,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解法:
模运算的性质
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
#define endl '\n'
void solve() {string s;cin >> s;long long t = 0;for (int i = 0; i < s.size();i++) {t = t * 10 + (s[i] - '0');t %= 7;}if ((t % 7) & 1) cout << "lmly" << endl;else cout << "tzz" << endl;
}
int main() {int t; cin >> t;while (t--) {solve();}return 0;
}
这篇关于我只会暴打学长的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!