QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#129946 | #6740. Function | Nicolas125841 | TL | 0ms | 0kb | C++17 | 479b | 2023-07-23 10:03:22 | 2023-07-23 10:03:26 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod = 998244353;
const int N = 20210926;
unordered_set<int> vis;
void rec(int n){
if(vis.find(n) != vis.end())
return;
vis.insert(n);
for(int i = 2; i <= N; i++){
if(i > n)
break;
rec(n/i);
}
}
int main(){
for(int i = 0; i < 1000000; i++)
vis.insert(i);
rec(1000000000);
cout << "0\n";
}
詳細信息
Test #1:
score: 0
Time Limit Exceeded
input:
1