Submission #213559

# Submission time Handle Problem Language Result Execution time Memory
213559 2020-03-26T06:30:50 Z berryzed Ancient symbol (kriii1_A) Java 11
0 / 1
90 ms 12148 KB
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
1 Runtime error 90 ms 12148 KB Memory limit exceeded (if you are sure your verdict is not MLE, please contact us)
2 Halted 0 ms 0 KB -