제출 #213557

#제출 시각아이디문제언어결과실행 시간메모리
213557berryzedAncient symbol (kriii1_A)Java
0 / 1
122 ms13552 KiB
import java.util.Scanner;

/**
 * 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) {
		Scanner scanner = new Scanner(System.in);
		int x = scanner.nextInt();
		System.out.println(111 * x ^ 2 + 11 * x + 1);
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...