結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,344 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 84 ms
77,568 KB
testcase_08 AC 36 ms
52,608 KB
testcase_09 AC 52 ms
62,720 KB
testcase_10 AC 47 ms
61,696 KB
testcase_11 AC 1,226 ms
93,824 KB
testcase_12 AC 1,331 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