結果

問題 No.2043 Ohuton and Makura
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-09 01:02:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 930 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 1,137 ms
コンパイル使用メモリ 112,196 KB
実行使用メモリ 90,404 KB
最終ジャッジ日時 2024-05-04 06:15:45
合計ジャッジ時間 11,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 448 ms
54,124 KB
testcase_03 AC 415 ms
52,204 KB
testcase_04 AC 772 ms
80,044 KB
testcase_05 AC 488 ms
57,072 KB
testcase_06 AC 41 ms
12,544 KB
testcase_07 AC 866 ms
85,676 KB
testcase_08 AC 68 ms
17,536 KB
testcase_09 AC 468 ms
56,960 KB
testcase_10 AC 742 ms
75,900 KB
testcase_11 AC 480 ms
56,140 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 885 ms
90,372 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 907 ms
90,336 KB
testcase_18 AC 907 ms
90,372 KB
testcase_19 AC 930 ms
90,308 KB
testcase_20 AC 893 ms
90,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll A, B, S, ans=0;
    cin >> A >> B >> S;
    vector<vector<ll>> p(S+1);
    for (int i=1; i<=S; i++){
        for (int j=i; j<=S; j+=i) p[j].push_back(i);
    }

    for (int i=1; i<=S; i++){
        for (auto x : p[i]) ans += max(0LL, A-x+1) * max(0LL, B-i/x+1);
    }

    cout << ans << endl;

    return 0;
}
0