結果

問題 No.2043 Ohuton and Makura
ユーザー flippergoflippergo
提出日時 2024-12-20 09:07:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 60,336 KB
最終ジャッジ日時 2024-12-20 09:07:15
合計ジャッジ時間 2,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,208 KB
testcase_01 AC 38 ms
53,016 KB
testcase_02 AC 47 ms
59,380 KB
testcase_03 AC 42 ms
58,632 KB
testcase_04 AC 50 ms
58,800 KB
testcase_05 AC 49 ms
58,684 KB
testcase_06 AC 43 ms
58,100 KB
testcase_07 AC 53 ms
58,452 KB
testcase_08 AC 44 ms
59,240 KB
testcase_09 AC 45 ms
58,680 KB
testcase_10 AC 46 ms
60,128 KB
testcase_11 AC 50 ms
58,352 KB
testcase_12 AC 39 ms
53,560 KB
testcase_13 AC 40 ms
52,488 KB
testcase_14 AC 39 ms
52,520 KB
testcase_15 AC 51 ms
58,404 KB
testcase_16 AC 53 ms
58,436 KB
testcase_17 AC 55 ms
60,336 KB
testcase_18 AC 38 ms
52,560 KB
testcase_19 AC 53 ms
58,132 KB
testcase_20 AC 57 ms
59,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,S = map(int,input().split())
ans = 0
for dx in range(1,A+1):
    n = min(S//dx,B)
    ans += (A-dx+1)*((B+1)*n-((n+1)*n)//2)
print(ans)
0