結果

問題 No.607 開通777年記念
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 14:00:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-04 02:45:30
合計ジャッジ時間 2,898 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 25 ms
10,880 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 77 ms
10,880 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 876 ms
11,136 KB
testcase_12 AC 902 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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