結果

問題 No.2480 Sequence Sum
ユーザー t98slidert98slider
提出日時 2023-11-03 13:09:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 1,561 ms
コンパイル使用メモリ 165,252 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-25 18:36:08
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ll n, ans = 0;
    cin >> n;
    for(ll i = 1; i * i <= n; i++){
        ll L = n / i;
        ll R = n / (i + 1);
        if(n % L == 0) L--;
        //if(n % R == 0) R++;
        ans += L - R;
    }
    cout << ans << '\n';
}
0