結果

問題 No.607 開通777年記念
ユーザー convexineqconvexineq
提出日時 2020-12-27 07:19:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 77,448 KB
最終ジャッジ日時 2024-09-25 10:53:40
合計ジャッジ時間 2,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,072 KB
testcase_01 AC 37 ms
53,368 KB
testcase_02 AC 38 ms
52,276 KB
testcase_03 AC 35 ms
53,604 KB
testcase_04 AC 37 ms
51,940 KB
testcase_05 AC 37 ms
52,188 KB
testcase_06 AC 37 ms
52,328 KB
testcase_07 AC 85 ms
76,008 KB
testcase_08 AC 38 ms
52,332 KB
testcase_09 AC 44 ms
62,116 KB
testcase_10 AC 46 ms
62,632 KB
testcase_11 AC 201 ms
77,448 KB
testcase_12 AC 199 ms
77,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
r = [0]*n
ok = 0
for _ in range(m):
    *a, = map(int,input().split())
    d = {0}
    c = 0
    for i in range(n):
        r[i] += a[i]
        c += r[i]
        if c-777 in d:
            ok = 1
        d.add(c)
print("YES" if ok else "NO")
0