QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#478229#4388. C++ to Pythonhorzward#AC ✓0ms3856kbC++17408b2024-07-14 19:10:572024-07-14 19:11:01

Judging History

你现在查看的是最新测评结果

  • [2024-07-14 19:11:01]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3856kb
  • [2024-07-14 19:10:57]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	int t;
	cin >> t;
	while(t--)
	{
		string s;
		cin >> s;
		int n = s.size();
		for(int i=0; i<n; i++)
		{
			if(i+15<=n && s.substr(i, 15) == "std::make_tuple")
			{
				i+=15;
			}
			cout << s[i];
		}
		cout << "\n";
	}

	/*string s = ;
	cout << s << "\n" << s.size();*/
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3856kb

input:

100
std::make_tuple(-2,-2,4,-5,std::make_tuple(std::make_tuple(2,1,-4,5,-3),std::make_tuple(std::make_tuple(std::make_tuple(std::make_tuple(5,std::make_tuple(std::make_tuple(-4,std::make_tuple(std::make_tuple(std::make_tuple(0,std::make_tuple(std::make_tuple(std::make_tuple(1,-1,-3,-5,4),std::make_t...

output:

(-2,-2,4,-5,((2,1,-4,5,-3),((((5,((-4,(((0,(((1,-1,-3,-5,4),(((0,(2,(((-4,-2,2,-1,5,((0,4),-2)),-5,-2),-5,3),-5)),5),0,3)),-3,-5)),3),4,5)),5)),1),5,4),4,-1)),-5,-3)
(-5,4,-2,5,(-4,(0,(((-5,(4,((0,(4,((2,-3,-1,-3,-2),((-1,((-3,(1,((2,(((-1,(2,(-3,((5,0),4),-2),4)),0),2,-4)),-1),-3)),-5)),-2)),-3)),0...

result:

ok 100 lines