結果

問題 No.2043 Ohuton and Makura
ユーザー asumo0729asumo0729
提出日時 2022-08-21 14:59:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 76,080 KB
最終ジャッジ日時 2024-10-10 06:12:36
合計ジャッジ時間 2,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,356 KB
testcase_01 AC 37 ms
52,368 KB
testcase_02 AC 82 ms
75,784 KB
testcase_03 AC 82 ms
75,712 KB
testcase_04 AC 93 ms
75,756 KB
testcase_05 AC 80 ms
75,560 KB
testcase_06 AC 54 ms
64,416 KB
testcase_07 AC 97 ms
75,516 KB
testcase_08 AC 53 ms
67,040 KB
testcase_09 AC 80 ms
75,564 KB
testcase_10 AC 92 ms
75,596 KB
testcase_11 AC 78 ms
75,596 KB
testcase_12 AC 37 ms
51,944 KB
testcase_13 AC 104 ms
75,808 KB
testcase_14 AC 38 ms
53,152 KB
testcase_15 AC 37 ms
53,284 KB
testcase_16 AC 36 ms
52,144 KB
testcase_17 AC 94 ms
75,576 KB
testcase_18 AC 110 ms
76,080 KB
testcase_19 AC 93 ms
75,360 KB
testcase_20 AC 93 ms
75,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, S = map(int, input().split())
ans = 0
for x in range(1, S + 1):
    for y in range(1, S // x + 1):
        ans += max(0, A - x + 1) * max(0, B - y + 1)
print(ans)
0