結果

問題 No.607 開通777年記念
ユーザー GrayCoderGrayCoder
提出日時 2017-12-07 22:14:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 678 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-05-06 19:36:21
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,000 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 149 ms
17,408 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 49 ms
11,520 KB
testcase_10 AC 34 ms
11,392 KB
testcase_11 TLE -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

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