結果

問題 No.2937 Sigma Plus Problem
ユーザー ooaiu
提出日時 2024-10-28 13:53:07
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 300 ms
コード長 490 bytes
コンパイル時間 3,020 ms
コンパイル使用メモリ 244,492 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-28 13:53:11
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) (void(0))
#endif

void solve() {
    unsigned long long N; cin >> N;
    unsigned long long t = (N % 2 == 0 ? N / 2 : N);
    unsigned long long s = ((N + 1) % 2 == 0 ? (N + 1) / 2 : N + 1);
    cout << t * s << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while(tt--) {
        solve();
    }
}
0