1 条题解

  • 0
    @ 2026-4-6 18:56:31
    #include<bits/stdc++.h>
    using namespace std;
    #define LL __int128
    template<typename T>void qw(T x)
    {
    	if(x<0)x=-x,putchar('-');
    	if(x/10)qw(x/10);
    	putchar(x%10+48); 
    }
    signed main()
    {
    	LL x=1;
    	for(int i=1;i<=50;i++)x*=5;
    	for(int i=1;i<=100;i++)
    	{
    		qw(x*i);
    		for(int j=1;j<=50;j++)cout<<0;
    	}
    	return 0;
    }
    • 1

    信息

    ID
    8024
    时间
    2000ms
    内存
    1024MiB
    难度
    10
    标签
    递交数
    6
    已通过
    3
    上传者