結果

問題 No.2043 Ohuton and Makura
ユーザー ShirotsumeShirotsume
提出日時 2022-08-19 21:51:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 81,772 KB
最終ジャッジ日時 2024-10-08 08:19:22
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,580 KB
testcase_01 AC 34 ms
52,624 KB
testcase_02 AC 48 ms
66,892 KB
testcase_03 AC 47 ms
65,724 KB
testcase_04 AC 60 ms
76,968 KB
testcase_05 AC 58 ms
74,776 KB
testcase_06 AC 53 ms
70,516 KB
testcase_07 AC 58 ms
68,224 KB
testcase_08 AC 47 ms
65,880 KB
testcase_09 AC 53 ms
71,492 KB
testcase_10 AC 56 ms
70,728 KB
testcase_11 AC 63 ms
75,604 KB
testcase_12 AC 34 ms
52,372 KB
testcase_13 AC 36 ms
53,136 KB
testcase_14 AC 45 ms
70,172 KB
testcase_15 AC 54 ms
68,432 KB
testcase_16 AC 62 ms
81,772 KB
testcase_17 AC 59 ms
68,700 KB
testcase_18 AC 46 ms
69,980 KB
testcase_19 AC 64 ms
80,460 KB
testcase_20 AC 64 ms
81,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
rec = False #再帰を使うときはこれをTrueにする
if rec:
    sys.setrecursionlimit(5 * 10 ** 5)
    from pypyjit import set_param
    set_param('max_unroll_recursion=-1')
inf = 2 ** 63 - 1
mod = 998244353

class Cumsum1d():
    def __init__(self, A):
        self.n = len(A)
        self.Suma = [0] * (self.n + 1)
        for i in range(self.n):
            self.Suma[i + 1] += self.Suma[i] + A[i]

    def query(self, l, r):
        #0-indexed
        return self.Suma[r] - self.Suma[l]

    def get(self, i):
        return self.Suma[i + 1] - self.Suma[i]

    def __getitem__(self, p):
        if isinstance(p, int):
            return self.get(p)
        else:
            return self.query(p.start, p.stop)


a, b, s = mi()

A = [a - i for i in range(a)]
B = [b - i for i in range(b)]
A = [0] + A
B = [0] + B


B = Cumsum1d(B)
ans = 0
for i in range(1, a + 1):
    ans += A[i] * B[0:min(s // i + 1, b + 1)]
print(ans)
0