Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99129 柯昊阳 RSA加密算法 C++ 通过 100 0 MS 248 KB 240 2023-08-22 09:33:18

Tests(4/4):


#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; cout<<n<<"="; for(int i = 2;i<=n;i++){ while(n%i==0){ cout<<i; n = n/i; if(n==1){ return 0; } cout<<"*"; } } return 0; }


测评信息: