結果

問題 No.831 都市めぐり
ユーザー okok
提出日時 2019-05-24 22:49:15
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 951 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 71,640 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 13:04:04
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 4 ms
4,348 KB
testcase_16 AC 3 ms
4,348 KB
testcase_17 AC 3 ms
4,348 KB
testcase_18 AC 5 ms
4,348 KB
testcase_19 AC 6 ms
4,348 KB
testcase_20 AC 6 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>

using namespace std;

#define int long long
#define rep(i,n) for(int i = 0; i < (n); i++)
#define INF ((long long)1e18)
#define MOD ((int)1e9+7)
#define endl "\n"

#define yn(f) ((f)?"Yes":"No")
#define YN(f) ((f)?"YES":"NO")

#define MAX

signed main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout<<fixed<<setprecision(10);
	
	int N;
	int ans = 0,  a = 1, b;
	
	cin>>N;
	
	a = 1;
	b = N-1;
	
	for(int i = 0; i < N; i++){
		ans += a*b;
		
		// cout<<a<<" "<<b<<endl;
		if(N%2){
			if(i%2 == 0)a += 2;
			else b -= 2;
		} else {
			if(i+1 < N/2) a += 2;
			else if(i+1 == N/2) a--;
			else a -= 2;
			if(i+1 == N/2 - 2) b--;
			else if(i+1 < N/2) b -= 2;
			else b += 2;
		}
	}
	
	if(N == 1) ans = 0;
	else if(N%2 == 1) ans += N;
	else {
		ans += 3;
		if(ans == 4) ans = 21;
		if(ans == 2) ans = 4;
	}
	
	cout<<ans<<endl;
	
	
	return 0;
}
0