結果
| 問題 | No.2043 Ohuton and Makura |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-22 10:36:10 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 559 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-07-10 03:59:27 |
| 合計ジャッジ時間 | 30,350 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 TLE * 8 |
ソースコード
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)