結果

問題 No.607 開通777年記念
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 14:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 85,672 KB
最終ジャッジ日時 2024-11-25 09:03:49
合計ジャッジ時間 1,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,928 KB
testcase_01 AC 39 ms
54,772 KB
testcase_02 AC 40 ms
54,364 KB
testcase_03 AC 40 ms
54,592 KB
testcase_04 AC 39 ms
54,772 KB
testcase_05 AC 40 ms
54,744 KB
testcase_06 AC 40 ms
54,332 KB
testcase_07 AC 79 ms
78,380 KB
testcase_08 AC 40 ms
54,460 KB
testcase_09 AC 55 ms
68,988 KB
testcase_10 AC 47 ms
62,920 KB
testcase_11 AC 157 ms
85,672 KB
testcase_12 AC 155 ms
85,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
a=[list(map(int,input().split())) for _ in range(m)]
for i in range(1,m):
    for j in range(n):
        a[i][j]+=a[i-1][j]
for i in range(m):
    q=deque()
    now=0
    for j in range(n):
        now+=a[i][j]
        q.append(a[i][j])
        while q and now>777:
            out=q.popleft()
            now-=out
        if now==777:
            print('YES')
            exit()
print('NO')
0