| 5 | long long Answer = 0; |
| 6 | |
| 7 | int main() { |
| 8 | // ���� |
| 9 | cin >> N >> S; |
| 10 | |
| 11 | // ���������߂� |
| 12 | for (int i = 1; i <= N; i++) { |
| 13 | for (int j = 1; j <= N; j++) { |
| 14 | if (i + j <= S) Answer += 1; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | // �o�� |
| 19 | cout << Answer << endl; |
| 20 | return 0; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected