1 条题解
-
0Infinity_ LV 8 @ 2025-01-17 09:59:45
#include<bits/stdc++.h> using namespace std; set<string> name; string s; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; while(n--){ cin >> s; if(!name.count(s)){ cout << s << endl; name.insert(s); } } return 0; }
- 1
信息
- 难度
- 9
- 分类
- (无)
- 标签
- (无)
- 递交数
- 4
- 已通过
- 4
- 通过率
- 100%
- 被复制
- 7
- 上传者