結果

問題 No.2043 Ohuton and Makura
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-25 22:55:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 75,740 KB
最終ジャッジ日時 2024-10-13 03:50:25
合計ジャッジ時間 2,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,164 KB
testcase_01 AC 39 ms
52,932 KB
testcase_02 AC 76 ms
75,348 KB
testcase_03 AC 71 ms
75,656 KB
testcase_04 AC 86 ms
75,492 KB
testcase_05 AC 72 ms
75,740 KB
testcase_06 AC 49 ms
64,368 KB
testcase_07 AC 91 ms
75,720 KB
testcase_08 AC 50 ms
66,856 KB
testcase_09 AC 73 ms
75,212 KB
testcase_10 AC 82 ms
75,348 KB
testcase_11 AC 67 ms
73,788 KB
testcase_12 AC 34 ms
52,812 KB
testcase_13 AC 83 ms
75,144 KB
testcase_14 AC 35 ms
51,636 KB
testcase_15 AC 35 ms
52,480 KB
testcase_16 AC 33 ms
53,636 KB
testcase_17 AC 85 ms
75,496 KB
testcase_18 AC 91 ms
75,572 KB
testcase_19 AC 88 ms
75,680 KB
testcase_20 AC 86 ms
75,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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