結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
49,704 KB
testcase_01 AC 532 ms
44,332 KB
testcase_02 AC 533 ms
43,944 KB
testcase_03 AC 532 ms
44,452 KB
testcase_04 AC 531 ms
44,204 KB
testcase_05 AC 534 ms
44,328 KB
testcase_06 AC 531 ms
44,448 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

import numpy as np

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

npax = np.array([0 for x in range(nm[0])])

for indat in indats:
    indat = np.array(indat)
    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