acgo题库
  • 首页
  • 题库
  • 学习
  • 天梯
  • 备赛

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
  • 竞赛
  • 讨论
  • 团队
登录
注册
题目详情提交记录(0)
  • 题解

    **#include <iostream> #include <vector> #include <map> using namespace std; typedef long long ll; // 计算阶乘 ll factorial(int n) { ll res = 1; for (int i = 2; i <= n; i++) { res *= i; } return res; } int main() { int x; while (cin >> x) { // 质因数分解 map<int, int> factors; int temp = x; }**

    userId_undefined

    神-爸爸

    禁言
    时空双修者贪心·贪心尝试者字符串·魔法使分支·分支解题者素数猎手秩序白银
    12阅读
    0回复
    1点赞
暂无数据

提交答案之后,这里将显示提交结果~

首页