正经题解 - 特好的数
2024-06-12 11:11:47
发布于:浙江
85阅读
0回复
0点赞
正经题解 - 特好的数
题目分析
数字位上的数字只能是 ,我们可以先列举前面的一些数字,,它本质上就是 进制,不过在输出的时候需要替换一下数字。
AC代码
#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;
const int N = 2e5 + 10;
int tables[]= {0,2,4,6,8};
void fn(ll n) {
if (n == 0)return;
fn(n/5);
cout << tables[n%5];
}
int main() {
ll k;
cin >> k;
k--;
if (k==0)cout << 0;
fn(k);
return 0;
}
这里空空如也
有帮助,赞一个