結果

問題 No.2043 Ohuton and Makura
ユーザー a aa a
提出日時 2022-10-03 01:20:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,347 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-07 18:09:18
合計ジャッジ時間 11,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,392 KB
testcase_01 AC 34 ms
11,264 KB
testcase_02 AC 295 ms
11,136 KB
testcase_03 AC 65 ms
11,392 KB
testcase_04 AC 1,165 ms
11,264 KB
testcase_05 AC 828 ms
11,264 KB
testcase_06 AC 146 ms
11,392 KB
testcase_07 AC 1,273 ms
11,264 KB
testcase_08 AC 190 ms
11,136 KB
testcase_09 AC 329 ms
11,264 KB
testcase_10 AC 570 ms
11,264 KB
testcase_11 AC 829 ms
11,136 KB
testcase_12 AC 33 ms
11,392 KB
testcase_13 AC 32 ms
11,264 KB
testcase_14 AC 33 ms
11,136 KB
testcase_15 AC 33 ms
11,136 KB
testcase_16 AC 34 ms
11,136 KB
testcase_17 AC 1,307 ms
11,264 KB
testcase_18 AC 33 ms
11,136 KB
testcase_19 AC 1,344 ms
11,264 KB
testcase_20 AC 1,347 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
import math
a,b,s=list(map(int,input().split ()))
n=0
for i in range(1,s+1):
    bm=min(max(math.floor(s/i),0),b)
    n+=int((a-i+1)*(((b+1)*bm)-(bm*(bm+1)*Decimal('0.5'))))
    if i==a:
        break
print(n)

0