제출 #213560

#제출 시각아이디문제언어결과실행 시간메모리
213560berryzedAncient symbol (kriii1_A)Java
0 / 1
82 ms12008 KiB
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; 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((int) (111 * Math.pow(x, 2) + 11 * x + 1)); } }
#Verdict Execution timeMemoryGrader output
Fetching results...