| 220 | } |
| 221 | |
| 222 | auto Task::getTotalTimeLimit() const -> int { |
| 223 | int total = 0; |
| 224 | |
| 225 | for (auto *i : testCaseList) { |
| 226 | total += i->getTimeLimit() * i->getInputFiles().size(); |
| 227 | } |
| 228 | |
| 229 | return total; |
| 230 | } |
| 231 | |
| 232 | auto Task::getTotalScore() const -> int { |
| 233 | int total = 0; |
no test coverage detected