#include #define _USE_MATH_DEFINES using namespace std; typedef pair P; typedef double db; typedef long long ll; typedef float fl; typedef bool bl; typedef string st; typedef int itn; const int INF=100000000; /*π*/double PI=3.141592653589;ll MOD=1000000007; int dx[4]={1,0,-1,0} , dy[4]={0,1,0,-1}; int DX[8]={0,-1,-1,-1,0,1,1,1} , DY[8]={1,1,0,-1,-1,-1,0,1}; string fi="01234567890123456789"; string al="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"; string AL="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ"; int factorial(int i){return i ? factorial(i-1)*i:1;}; #define YesNo(flag) if(flag){cout<<"Yes"<>n; cout << ((n+1)/2)*((n+1)/2+1)/2 << endl; } // 文字列sの数値変換の例 int a=atoi(s.c_str()); // substrは長さnの文字列s、s.substr(配列の要素(0も含む),文字数);