結果

問題 No.2937 Sigma Plus Problem
ユーザー yuusaanyuusaan
提出日時 2024-10-09 11:29:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 300 ms
コード長 369 bytes
コンパイル時間 3,356 ms
コンパイル使用メモリ 242,792 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 11:29:53
合計ジャッジ時間 4,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 30 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 17 ms
6,820 KB
testcase_09 AC 32 ms
6,816 KB
testcase_10 AC 38 ms
6,820 KB
testcase_11 AC 9 ms
6,816 KB
testcase_12 AC 37 ms
6,820 KB
testcase_13 AC 55 ms
6,820 KB
testcase_14 AC 22 ms
6,816 KB
testcase_15 AC 56 ms
6,820 KB
testcase_16 AC 20 ms
6,816 KB
testcase_17 AC 31 ms
6,820 KB
testcase_18 AC 13 ms
6,816 KB
testcase_19 AC 24 ms
6,820 KB
testcase_20 AC 36 ms
6,820 KB
testcase_21 AC 47 ms
6,816 KB
testcase_22 AC 58 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ull = unsigned long long;

int INF = 1000000000;

int main(){
    ull N;
    cin >> N;
    ull ans = 0;
    ull now = 0;
    ull check = 100;
    while(N >= check){
        ans += now + 5050;
        now += 10000;
        check += 100;
    }
    for(ull j = check - 99;j <= N;j++)ans += j;
    cout << ans << endl;
}
0