結果

問題 No.607 開通777年記念
ユーザー keidenkeiden
提出日時 2024-09-21 17:39:58
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 17:40:00
合計ジャッジ時間 1,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 88 ms
5,376 KB
testcase_12 AC 98 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main(void) {
    int i, j;
    int n, m;
    int64_t a[1010];
    int64_t b[1010];
    scanf("%d%d", &n, &m);
    for (i = 0; i <= n; i++) {
        a[i] = 0;
    }
    for (j = 0; j < m; j++) {
        for (i = 0; i < n; i++) {
            scanf("%" PRIi64, &b[i]);
        }
        for (i = 0; i < n; i++) {
            a[i] += b[i];
        }
        int64_t l = 0, r = 0, s = 0;
        while (l < n) {
            while ((r < n) && (s < 777)) {
                s += a[r];
                r++;
            }
            if (s == 777) {
                printf("YES\n");
                return 0;
            }
            s -= a[l];
            l++;
        }
    }
    printf("NO\n");
    return 0;
}
0