結果

問題 No.831 都市めぐり
ユーザー tottoripapertottoripaper
提出日時 2019-05-24 22:03:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 1,347 ms
コンパイル使用メモリ 166,692 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-17 10:41:54
合計ジャッジ時間 1,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define unless(p) if(!(p))
#define until(p) while(!(p))

using ll = std::int64_t;
using P = std::tuple<int,int>;

ll N;

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    std::cin >> N;

    ll res;

    if(N == 1){
        res = 0;
    }else if(N % 2 == 0){
        res = (N * N * N + 3ll * N * N + 5ll * N - 6) / 6;
    }else{
        res = (N * N * N + 3ll * N * N + 5ll * N - 3) / 6;
    }

    std::cout << res << std::endl;
}
0