結果
問題 | No.2043 Ohuton and Makura |
ユーザー | yansi819 |
提出日時 | 2024-04-14 14:06:10 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 4,202 ms |
コンパイル使用メモリ | 262,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 12:47:23 |
合計ジャッジ時間 | 5,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; using mint = modint998244353; int main() { ll a, b, s; cin >> a >> b >> s; ll ans = 0; for (ll x = 1; x <= a; x++) { for (ll y = 1; y <= b; y++) { if (x * y > s) break; ans += (a - x + 1) * (b - y + 1); } } cout << ans << endl; return 0; }