Early Bird

AtCoder
IDrelay_h
Time2000ms
Memory256MB
Difficulty
Takahashi recorded his daily life for the last few days as a integer sequence of length $2N$, as follows: * $a_1, b_1, a_2, b_2, ... , a_N, b_N$ This means that, starting from a certain time $T$, he was: * sleeping for exactly $a_1$ seconds * then awake for exactly $b_1$ seconds * then sleeping for exactly $a_2$ seconds * : * then sleeping for exactly $a_N$ seconds * then awake for exactly $b_N$ seconds In this record, he waked up $N$ times. Takahashi is wondering how many times he waked up early during the recorded period. Here, he is said to _wake up early_ if he wakes up between $4:00$ AM and $7:00$ AM, inclusive. If he wakes up more than once during this period, each of these awakenings is counted as waking up early. Unfortunately, he forgot the time $T$. Find the maximum possible number of times he waked up early during the recorded period. For your information, a day consists of $86400$ seconds, and the length of the period between $4:00$ AM and $7:00$ AM is $10800$ seconds. ## Constraints * $1 \leq N \leq 10^5$ * $1 \leq a_i, b_i \leq 10^5$ * $a_i$ and $b_i$ are integers. ## Input The input is given from Standard Input in the following format: $N$ $a_1$ $b_1$ $a_2$ $b_2$ : $a_N$ $b_N$ [samples]
Samples
Input #1
3
28800 57600
28800 57600
57600 28800
Output #1
2
Input #2
10
28800 57600
4800 9600
6000 1200
600 600
300 600
5400 600
6000 5760
6760 2880
6000 12000
9000 600
Output #2
5
API Response (JSON)
{
  "problem": {
    "name": "Early Bird",
    "description": {
      "content": "Takahashi recorded his daily life for the last few days as a integer sequence of length $2N$, as follows: *   $a_1, b_1, a_2, b_2, ... , a_N, b_N$ This means that, starting from a certain time $T$, ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "relay_h"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Takahashi recorded his daily life for the last few days as a integer sequence of length $2N$, as follows:\n\n*   $a_1, b_1, a_2, b_2, ... , a_N, b_N$\n\nThis means that, starting from a certain time $T$, ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments