摘要: // 3'42" #include <bits/stdc++.h> using namespace std; int main() { vector<string> v; string str; while(cin >> str) { if(str == ".") break; v.push_bac 阅读全文
posted @ 2024-08-02 23:58 Frodnx 阅读(23) 评论(0) 推荐(0)
摘要: // 6'22" #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; map<int,int> hash; for(int i = 1; i <= n; ++ i) { int k; cin >> k 阅读全文
posted @ 2024-08-02 23:53 Frodnx 阅读(19) 评论(0) 推荐(0)