結果

問題 No.607 開通777年記念
ユーザー ああいいああいい
提出日時 2022-03-30 19:39:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 85,632 KB
最終ジャッジ日時 2024-11-15 10:17:29
合計ジャッジ時間 2,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 42 ms
51,456 KB
testcase_07 AC 87 ms
77,312 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 55 ms
62,720 KB
testcase_10 AC 49 ms
59,392 KB
testcase_11 AC 233 ms
85,632 KB
testcase_12 AC 237 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(M)]

now = [0] * N
import sys
for i in range(M):
    for j in range(N):
        now[j] += a[i][j]
    s = set()
    S = 0
    s.add(0)
    for n in now:
        S += n
        if S - 777 in s:
            print('YES')
            exit()
        s.add(S)
print('NO')
0