제출 #4108

#제출 시각아이디문제언어결과실행 시간메모리
4108jaysAncient symbol (kriii1_A)C++98
1 / 1
0 ms1088 KiB
#include <cstdio>

typedef long long ll;

int main() {
	ll num;
	scanf("%lld", &num);
	ll ans = 111 * num * num + 11 * num + 1;
	printf("%lld\n", ans);
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...