結果

問題 No.607 開通777年記念
ユーザー GrayCoderGrayCoder
提出日時 2017-12-07 22:15:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,379 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 93,184 KB
最終ジャッジ日時 2024-11-29 05:21:19
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 92 ms
77,716 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 56 ms
63,104 KB
testcase_10 AC 52 ms
62,080 KB
testcase_11 AC 1,273 ms
93,184 KB
testcase_12 AC 1,379 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M = map(int, input().split())
    A = [list(map(int, input().split())) for _ in [0] * M]

    a = [[0 for _ in [0] * (N + 1)] for _ in [0] * (M + 1)]
    for j in range(N):
        for i in range(M):
            a[i+1][j+1] = A[i][j] + a[i][j+1]
        for i in range(M):
            a[i+1][j+1] += a[i+1][j]

    for i in range(1, M + 1):
        if max(a[i]) < 777:
            continue
        elif 777 in a[i]:
            print('YES')
            break
        j = N
        while j > 0:
            x = a[i][j] - 777
            if x in a[i]:
                print('YES')
                return
            j -= 1
    else:
        print('NO')

main()
0