結果

問題 No.2937 Sigma Plus Problem
ユーザー yuusaanyuusaan
提出日時 2024-10-09 11:28:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 362 bytes
コンパイル時間 3,271 ms
コンパイル使用メモリ 242,004 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 11:28:19
合計ジャッジ時間 9,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 TLE -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 156 ms
5,248 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 74 ms
5,248 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 208 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 181 ms
5,248 KB
testcase_17 AC 295 ms
5,248 KB
testcase_18 AC 114 ms
5,248 KB
testcase_19 AC 254 ms
5,248 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 = 10;
    while(N >= check){
        ans += now + 55;
        now += 100;
        check += 10;
    }
    for(ull j = check - 9;j <= N;j++)ans += j;
    cout << ans << endl;
}
0