結果

問題 No.2043 Ohuton and Makura
ユーザー t98slidert98slider
提出日時 2022-08-24 08:36:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 170,352 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-10-11 18:43:06
合計ジャッジ時間 12,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 413 ms
35,808 KB
testcase_03 AC 389 ms
34,588 KB
testcase_04 AC 704 ms
52,208 KB
testcase_05 AC 462 ms
37,888 KB
testcase_06 AC 31 ms
9,344 KB
testcase_07 AC 772 ms
55,800 KB
testcase_08 AC 50 ms
12,544 KB
testcase_09 AC 431 ms
37,640 KB
testcase_10 AC 678 ms
49,528 KB
testcase_11 AC 447 ms
37,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 843 ms
58,752 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 820 ms
58,740 KB
testcase_18 AC 833 ms
58,676 KB
testcase_19 AC 817 ms
58,732 KB
testcase_20 AC 822 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    long long A, B, S, ans = 0;
    cin >> A >> B >> S;
    vector<vector<int>> tb(S + 1);
    for(int i = 1; i <= S; i++){
        for(int j = i; j <= S; j+=i) tb[j].push_back(i);
        for(auto &&v:tb[i]) ans += max(0ll, A - v + 1) * max(0ll, B - i / v + 1);
    }
    cout << ans << endl;
}
0