| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141214 | 杨登博 | 最简真分数 | C++ | Runtime Error | 0 MS | 268 KB | 644 | 2025-12-21 15:13:06 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; bool gcd(int x,int y){ int z=x%y; while(z){ x=y; y=z; z=x%y; } if(y==1){ return 1; } return 0; } int main(){ int n,s,a[601]; cin>>n; for(int i=1;i<=n-1;i++){ cin>>a[i]; } for(int i=1;1<=n;i++){ for(int j=i-1;j<=n;j++){ s+=gcd(i,j); } } cout<<s; return 0; }
Runtime Error:Floating point exception