結果

問題 No.607 開通777年記念
ユーザー FromBooskaFromBooska
提出日時 2023-03-18 16:50:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-18 13:25:28
合計ジャッジ時間 2,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 31 ms
51,328 KB
testcase_05 AC 32 ms
51,712 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 78 ms
76,416 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 43 ms
63,360 KB
testcase_10 AC 48 ms
63,232 KB
testcase_11 AC 180 ms
78,208 KB
testcase_12 AC 191 ms
77,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
ans = 'NO'
A = [0]*N
for i in range(M):
    add = list(map(int, input().split()))
    for i in range(N):
        A[i] += add[i]
    cumu = [0]
    temp = 0
    for i in range(N):
        temp += A[i]
        cumu.append(temp)
    target = set()
    for i in range(N+1):
        if cumu[i] in target:
            ans = 'YES'
            break
        else:
            target.add(cumu[i]+777)
    #print(A, cumu, target, ans)
print(ans)
0