Submission #4108

#TimeUsernameProblemLanguageResultExecution timeMemory
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...