結果

問題 No.2043 Ohuton and Makura
ユーザー pluto77pluto77
提出日時 2023-01-24 15:50:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 75,640 KB
最終ジャッジ日時 2024-06-26 04:04:39
合計ジャッジ時間 2,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

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