# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
213559 | berryzed | Ancient symbol (kriii1_A) | Java | 90 ms | 12148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/**
* https://oj.uz/problem/view/kriii1_A
* <p>
* 유물 코드를 C 컴파일러로 실행한 후 나온 내용을 다시 위에 붙여서 재컴파일하면 된다.
* https://www.tutorialspoint.com/compile_c_online.php
*/
public class A {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int x = Integer.parseInt(br.readLine());
System.out.println(Math.round(111 * Math.pow(x, 2) + 11 * x + 1));
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |