fork download
  1. #include <iostream>
  2. #include <chrono>
  3. #include <numeric>
  4. using namespace std;
  5.  
  6. int main() {
  7. auto f = numeric_limits<chrono::microseconds>::max();
  8. cout << f.count() << endl;
  9.  
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5552KB
stdin
Standard input is empty
stdout
0