library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub maspypy/library

:warning: other/TLE.hpp

Code

// 提出を TLE させる目的
void TLE() {
  volatile long long x = 0;
  while (true) {
    x++;
  }
}
#line 1 "other/TLE.hpp"
// 提出を TLE させる目的
void TLE() {
  volatile long long x = 0;
  while (true) {
    x++;
  }
}
Back to top page