結果

問題 No.2043 Ohuton and Makura
ユーザー minimumminimum
提出日時 2022-08-19 22:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 60,088 KB
最終ジャッジ日時 2024-10-08 08:56:41
合計ジャッジ時間 1,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,188 KB
testcase_01 AC 32 ms
52,072 KB
testcase_02 AC 36 ms
58,716 KB
testcase_03 AC 35 ms
58,064 KB
testcase_04 AC 42 ms
57,964 KB
testcase_05 AC 42 ms
58,980 KB
testcase_06 AC 38 ms
59,472 KB
testcase_07 AC 48 ms
58,728 KB
testcase_08 AC 40 ms
58,424 KB
testcase_09 AC 40 ms
58,428 KB
testcase_10 AC 44 ms
58,900 KB
testcase_11 AC 47 ms
58,644 KB
testcase_12 AC 34 ms
53,132 KB
testcase_13 AC 34 ms
51,876 KB
testcase_14 AC 33 ms
52,396 KB
testcase_15 AC 45 ms
58,480 KB
testcase_16 AC 47 ms
58,460 KB
testcase_17 AC 51 ms
60,088 KB
testcase_18 AC 35 ms
52,344 KB
testcase_19 AC 47 ms
59,848 KB
testcase_20 AC 48 ms
58,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, S = map(int, input().split())
ans = 0

for x in range(1, A + 1):
    mx = min(S // x, B)
    ans += (A - x + 1) * (B * mx - mx * (mx - 1) // 2)

print(ans)
0