結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,872 KB
testcase_01 AC 36 ms
52,704 KB
testcase_02 AC 81 ms
75,596 KB
testcase_03 AC 80 ms
75,620 KB
testcase_04 AC 92 ms
75,456 KB
testcase_05 AC 78 ms
75,572 KB
testcase_06 AC 51 ms
65,064 KB
testcase_07 AC 97 ms
75,444 KB
testcase_08 AC 53 ms
65,616 KB
testcase_09 AC 80 ms
75,632 KB
testcase_10 AC 91 ms
75,624 KB
testcase_11 AC 76 ms
75,452 KB
testcase_12 AC 35 ms
52,872 KB
testcase_13 AC 101 ms
75,592 KB
testcase_14 AC 37 ms
52,976 KB
testcase_15 AC 36 ms
53,412 KB
testcase_16 AC 36 ms
52,620 KB
testcase_17 AC 95 ms
75,516 KB
testcase_18 AC 111 ms
75,416 KB
testcase_19 AC 94 ms
75,640 KB
testcase_20 AC 96 ms
75,588 KB
権限があれば一括ダウンロードができます

ソースコード

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