CodeForces 592B
Posted 竹林灯火
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 592B相关的知识,希望对你有一定的参考价值。
题目链接:
http://codeforces.com/problemset/problem/592/B
这个题目没啥说的,画图找规律吧,哈哈哈
程序代码:
#include <cstdio> using namespace std; #define LL long long int main() { LL n; scanf("%lld",&n); printf("%lld\\n",(n-2)*(n-2)); return 0; }
以上是关于CodeForces 592B的主要内容,如果未能解决你的问题,请参考以下文章
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
Codeforces 86C Genetic engineering(AC自动机+DP)
CodeForces 1005D Polycarp and Div 3(思维贪心dp)