結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 45 ms
53,632 KB
testcase_05 AC 45 ms
53,760 KB
testcase_06 AC 45 ms
53,632 KB
testcase_07 AC 97 ms
78,380 KB
testcase_08 AC 47 ms
53,504 KB
testcase_09 AC 68 ms
67,840 KB
testcase_10 AC 55 ms
62,080 KB
testcase_11 AC 192 ms
85,888 KB
testcase_12 AC 189 ms
85,600 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