Блог пользователя ky28059

Автор ky28059, история, 3 года назад, По-английски

Hi, my code keeps getting TLE on problem C of the CPC polygon practice contest. Can anyone help?


fun main() { repeat (10000) { Thread.sleep(1000) } println("qpwoeirut orz") }
  • Проголосовать: нравится
  • +22
  • Проголосовать: не нравится

»
3 года назад, # |
Rev. 2   Проголосовать: нравится +25 Проголосовать: не нравится

this works

fun main() {
    repeat (10000) {
        Thread.sleep(1000)
    }
    println("agnimandur apple ary begin bucket charlie chessbot codetiger codicon darren dottomato dreamr dutin elephant fishy fishy fishy gilgm izhang jake joepher khanh kmp llm moo nave octopi PIG pikaninja qpwoeirut seal skittles steventan treezariox vroom wox purple purple purple orz")
}

credit: BucketPotato

Edit 1: I've double checked, and as I expected, the code passes within the TL. If you're wondering whether your name is misplaced, the code also ACs (the output is correct) :).