fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int n;
  5. int ans=0;
  6. scanf("%d",&n);
  7. for(int d=1;d<n;d++){
  8. if(n%d==1){
  9. ans+=d;
  10. }
  11. }
  12. return ans;
  13. }
Runtime error #stdin #stdout 3.05s 2156KB
stdin
Standard input is empty
stdout
Standard output is empty