fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. #define HALF_ECLIPSE_TO_LINE_RATIO (1.f / 6.f)
  5. #define LINE_TIME_SEC (1.f / 320.f)
  6. #define US_IN_SEC (1e6f)
  7. #define HALF_ECLIPSE_TIME_US (HALF_ECLIPSE_TO_LINE_RATIO * LINE_TIME_SEC * US_IN_SEC)
  8.  
  9. int main(void) {
  10. // your code goes here
  11. printf("%f", HALF_ECLIPSE_TIME_US);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
520.833374