牛客794719286号
牛客794719286号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客794719286号的博客
全部文章
/ 题解
(共2篇)
题解 | #单词倒排#
#include<bits/stdc++.h> using namespace std; int main(){ string str; while(getline(cin, str)){ vector<vector<char>>...
2021-08-10
1
403
题解 | #进制转换#
include using namespace std; int main(){ int str; while (cin >> hex >> str) { cout << dec << str << endl...
2021-06-16
0
356