結果

問題 No.607 開通777年記念
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-10 10:58:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 77,084 KB
最終ジャッジ日時 2024-09-14 19:33:07
合計ジャッジ時間 2,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,820 KB
testcase_01 AC 38 ms
52,740 KB
testcase_02 AC 38 ms
53,112 KB
testcase_03 AC 38 ms
52,956 KB
testcase_04 AC 39 ms
52,508 KB
testcase_05 AC 39 ms
51,956 KB
testcase_06 AC 39 ms
52,668 KB
testcase_07 AC 59 ms
73,640 KB
testcase_08 AC 40 ms
52,860 KB
testcase_09 AC 58 ms
68,228 KB
testcase_10 AC 39 ms
52,316 KB
testcase_11 AC 138 ms
77,084 KB
testcase_12 AC 138 ms
76,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
B = [0]*n
from itertools import accumulate
for i in range(m):
    A = list(map(int, input().split()))
    for i in range(n):
        B[i] += A[i]
    s = 0
    t = 0
    S = 0
    for s in range(n):
        while t < n and S < 777:
            S += B[t]
            t += 1
        if S == 777:
            print('YES')
            exit()
        if s == t:
            t += 1
        else:
            S -= B[s]
else:
    print('NO')
0