Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
119030 陈家宝 新的开始 C++ 通过 100 0 MS 256 KB 262 2024-01-03 13:31:43

Tests(10/10):


#include<bits/stdc++.h> using namespace std; typedef unsigned long long ull; ull A,B,sum; int main(){ scanf("%llu%llu",&A,&B); while(B){ sum+=A/B*B; ull tmp(B); B=A%B; A=tmp; } printf("%llu",sum); return 0; }


测评信息: