結果

問題 No.1137 Circles
ユーザー iiljjiiljj
提出日時 2020-10-08 23:56:37
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 4,024 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 06:14:38
合計ジャッジ時間 1,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 8 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:6:15: warning: implicit declaration of function 'getc_unlocked' [-Wimplicit-function-declaration]
    6 |         tmp = getc_unlocked(stdin);                                                                                    \
      |               ^~~~~~~~~~~~~
main.c:46:5: note: in expansion of macro 'rd_int'
   46 |     rd_int(n, tmp);
      |     ^~~~~~
main.c:13:15: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
   13 |         tmp = getchar_unlocked();                                                                                      \
      |               ^~~~~~~~~~~~~~~~
main.c:50:9: note: in expansion of macro 'rd_int_s'
   50 |         rd_int_s(x, tmp, sign);
      |         ^~~~~~~~
main.c:36:19: warning: implicit declaration of function 'putc_unlocked' [-Wimplicit-function-declaration]
   36 |     while (ptr--) putc_unlocked(buf[ptr] + '0', stdout);
      |                   ^~~~~~~~~~~~~
main.c:62:5: note: in expansion of macro 'wt_int'
   62 |     wt_int(ma, buf, ptr);
      |     ^~~~~~

ソースコード

diff #

#include <stdio.h>

// int tmp, var = 0; を先に宣言する
#define rd_int(var, tmp)                                                                                               \
    for (;;) {                                                                                                         \
        tmp = getc_unlocked(stdin);                                                                                    \
        if (tmp < '0' || tmp > '9') break;                                                                             \
        var = var * 10 + tmp - '0';                                                                                    \
    }
// int tmp, var = 0, sign = 0; を先に宣言する
#define rd_int_s(var, tmp, sign)                                                                                       \
    for (;;) {                                                                                                         \
        tmp = getchar_unlocked();                                                                                      \
        if (tmp == '-') {                                                                                              \
            sign = 1;                                                                                                  \
            break;                                                                                                     \
        } else if ('0' <= tmp && tmp <= '9') {                                                                         \
            var = tmp - '0';                                                                                           \
            break;                                                                                                     \
        }                                                                                                              \
    }                                                                                                                  \
    for (;;) {                                                                                                         \
        tmp = getc_unlocked(stdin);                                                                                    \
        if (tmp < '0' || tmp > '9') break;                                                                             \
        var = var * 10 + tmp - '0';                                                                                    \
    }                                                                                                                  \
    if (sign) var = -var;

// char buf[9]; int ptr = 0; を先に宣言する
#define wt_int(var, buf, ptr)                                                                                          \
    while (var) {                                                                                                      \
        buf[ptr++] = var % 10;                                                                                         \
        var /= 10;                                                                                                     \
    }                                                                                                                  \
    if (!ptr) buf[ptr++] = 0;                                                                                          \
    while (ptr--) putc_unlocked(buf[ptr] + '0', stdout);

#define LEN 400000
#define OFFSET 200000
int imos[LEN];

int main() {
    int n = 0, x, r, i, tmp, sign, ptr = 0;
    char buf[6];

    rd_int(n, tmp);

    for (i = 0; i < n; ++i) {
        x = r = sign = 0;
        rd_int_s(x, tmp, sign);
        rd_int(r, tmp);
        x += OFFSET;
        ++imos[x - r];
        --imos[x + r];
    }
    int ma = 0, acc = 0;
    for (i = 0; i < LEN; ++i) {
        acc += imos[i];
        if (acc > ma) ma = acc;
    }

    wt_int(ma, buf, ptr);
    return 0;
}
0