結果

問題 No.607 開通777年記念
ユーザー Bioinfo_KBioinfo_K
提出日時 2017-12-07 21:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 77,352 KB
最終ジャッジ日時 2024-11-29 05:11:51
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,680 KB
testcase_01 AC 40 ms
53,240 KB
testcase_02 AC 40 ms
52,336 KB
testcase_03 AC 40 ms
52,312 KB
testcase_04 AC 39 ms
53,160 KB
testcase_05 AC 39 ms
52,212 KB
testcase_06 AC 40 ms
53,828 KB
testcase_07 AC 236 ms
76,064 KB
testcase_08 AC 39 ms
53,636 KB
testcase_09 AC 59 ms
71,872 KB
testcase_10 AC 41 ms
53,104 KB
testcase_11 AC 266 ms
77,352 KB
testcase_12 AC 282 ms
77,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def Is(): return [int(x) for x in sys.stdin.readline().split()]

n,m = Is()
a = [0]*n
for i in range(m):
    t = Is()
    for j in range(n):
        a[j] += t[j]
    l,r = 0,1
    for i in range(2*n):
        s = sum(a[l:r])
        if s == 777:
            print("YES")
            exit()
        elif s < 777:
            r += 1
        else:
            l += 1
        if r > n:
            continue
print("NO")
0