Scala compile시 TLE ^^;;

  • enshahar
    enshahar

    Hello World를 스칼라로 풀었습니다. --;;

    1. 제가 짠 코드로 일단 넣어봤는데 TLE 오류 발생.

    object Main {
    def main(args:Array[String]) {
    val lineItr = io.Source.stdin.getLines
    val first = lineItr.next
    for {
    x <- lineItr
    } println("Hello, "+x)
    }
    }

    1. 그래서 MERCY를 한번 해봤는데 역시 TLE

    object Main {
    def main(args: Array[String]): Unit = {
    var cases = Integer.parseInt(readLine())
    if(cases > 0) {
    1.to(cases).foreach(_=>println("Hello Algospot!"))
    }
    }
    }

    1. 혹시나 해서 튜토리얼에 있는 예제 헬로월드 답안을 복사해 제출해 봤는데 역시 TLE

    object Main {
    def main(args: Array[String]): Unit = {
    var cases = Integer.parseInt(readLine())
    while (cases > 0) {
    println("Hello, " + readLine() + "!")
    cases -= 1
    }
    }
    }

    문제가 뭘까요.

    감사합니다.


    10년 전
2개의 댓글이 있습니다.
  • VOCList
    VOCList

    글 쓰시고 나서 수정이 된 건진 잘 모르겠지만 지금은 정상적으로 동작하는 것 같네요. 방금 스칼라로 Hello World 해결해봤습니다.


    10년 전 link
  • wookayin
    wookayin

    http://algospot.com/forum/read/2050/ 과 같은 채점 환경 불안정 문제로 보입니다.. ㅠㅠ


    10년 전 link
  • 정회원 권한이 있어야 커멘트를 다실 수 있습니다. 정회원이 되시려면 온라인 저지에서 5문제 이상을 푸시고, 가입 후 7일 이상이 지나셔야 합니다. 현재 문제를 푸셨습니다.