結果

問題 No.2043 Ohuton and Makura
ユーザー ntudantuda
提出日時 2022-10-08 11:06:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 63,028 KB
最終ジャッジ日時 2024-06-22 11:23:24
合計ジャッジ時間 2,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,436 KB
testcase_01 AC 33 ms
53,576 KB
testcase_02 AC 45 ms
59,708 KB
testcase_03 AC 46 ms
59,244 KB
testcase_04 AC 53 ms
62,140 KB
testcase_05 AC 49 ms
62,204 KB
testcase_06 AC 41 ms
59,548 KB
testcase_07 AC 44 ms
61,908 KB
testcase_08 AC 40 ms
59,968 KB
testcase_09 AC 45 ms
60,012 KB
testcase_10 AC 47 ms
60,636 KB
testcase_11 AC 48 ms
62,144 KB
testcase_12 AC 33 ms
51,692 KB
testcase_13 AC 33 ms
52,668 KB
testcase_14 AC 33 ms
52,284 KB
testcase_15 AC 44 ms
62,220 KB
testcase_16 AC 43 ms
61,436 KB
testcase_17 AC 44 ms
63,028 KB
testcase_18 AC 48 ms
60,084 KB
testcase_19 AC 52 ms
62,464 KB
testcase_20 AC 52 ms
62,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,S = map(int,input().split())
AA = [0] * (A+1)
for i in range(1,A+1):
    AA[i] = (A - i + 1) + AA[i-1]
ans = 0
for i in range(1,min(S+1,B+1)):
    ans += (B -i + 1) * AA[min(S//i,A)]
print(ans)
0