結果

問題 No.607 開通777年記念
ユーザー RyutoRyuto
提出日時 2017-12-11 13:43:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 573 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-05-07 17:07:13
合計ジャッジ時間 4,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,256 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

nm = [int(x) for x in input().split()]
indats = []
for i in range(nm[1]):
    tmpl = [int(x) for x in input().split()]
    indats.append(tmpl)

npax = [0 for x in range(nm[0])]
for indat in indats:
    npax = [x + y for (x, y) in zip(npax, indat)]
    for i in range(nm[0]):
        sumpax = 0
        for j in range(nm[0]-i):
            sumpax += npax[i+j]
            if sumpax == 777:
                print('YES')
                exit()
            elif sumpax > 777:
                break
            else:
                continue

print('NO')
0