結果

問題 No.2043 Ohuton and Makura
ユーザー 👑 KazunKazun
提出日時 2022-08-19 19:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,640 KB
最終ジャッジ日時 2024-10-08 04:41:38
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,700 KB
testcase_01 AC 36 ms
52,392 KB
testcase_02 AC 79 ms
75,636 KB
testcase_03 AC 78 ms
75,640 KB
testcase_04 AC 92 ms
75,392 KB
testcase_05 AC 77 ms
75,312 KB
testcase_06 AC 49 ms
64,672 KB
testcase_07 AC 96 ms
75,420 KB
testcase_08 AC 51 ms
65,476 KB
testcase_09 AC 79 ms
75,248 KB
testcase_10 AC 89 ms
75,556 KB
testcase_11 AC 75 ms
75,376 KB
testcase_12 AC 35 ms
52,824 KB
testcase_13 AC 102 ms
75,252 KB
testcase_14 AC 35 ms
52,832 KB
testcase_15 AC 35 ms
52,824 KB
testcase_16 AC 35 ms
51,820 KB
testcase_17 AC 94 ms
75,292 KB
testcase_18 AC 109 ms
75,296 KB
testcase_19 AC 92 ms
75,476 KB
testcase_20 AC 93 ms
75,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,S=map(int,input().split())

X=0
for i in range(1,S+1):
    for j in range(1,S//i+1):
        X+=max(0,A-i+1)*max(0,B-j+1)

print(X)
0