摘要: A #include <bits/stdc++.h> using namespace std; int a[10010], b[10010]; int main() { int T; cin >> T; while (T -- ) { int n; cin >> n; for (int i = 1; 阅读全文
posted @ 2022-01-30 15:02 Angels_of_Death 阅读(44) 评论(0) 推荐(0)
摘要: A class Solution { public: int findFinalValue(vector<int>& nums, int original) { for (int i = 1; i <= 1000; i ++ ) { for (auto x : nums) { if (x == or 阅读全文
posted @ 2022-01-30 13:42 Angels_of_Death 阅读(26) 评论(0) 推荐(0)