結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,888 KB
testcase_01 AC 32 ms
52,328 KB
testcase_02 AC 32 ms
53,812 KB
testcase_03 AC 33 ms
53,084 KB
testcase_04 AC 34 ms
51,956 KB
testcase_05 AC 34 ms
53,504 KB
testcase_06 AC 32 ms
53,236 KB
testcase_07 AC 63 ms
77,680 KB
testcase_08 AC 35 ms
53,688 KB
testcase_09 AC 46 ms
63,384 KB
testcase_10 AC 39 ms
60,232 KB
testcase_11 AC 175 ms
85,888 KB
testcase_12 AC 175 ms
85,892 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