結果

問題 No.607 開通777年記念
ユーザー maspymaspy
提出日時 2020-01-29 10:54:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 813 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 111,080 KB
最終ジャッジ日時 2024-09-16 00:44:50
合計ジャッジ時間 10,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,084 KB
testcase_01 AC 513 ms
44,340 KB
testcase_02 AC 514 ms
44,472 KB
testcase_03 AC 517 ms
43,968 KB
testcase_04 AC 510 ms
44,336 KB
testcase_05 AC 514 ms
44,332 KB
testcase_06 AC 513 ms
44,080 KB
testcase_07 AC 569 ms
47,532 KB
testcase_08 AC 508 ms
44,464 KB
testcase_09 AC 513 ms
44,208 KB
testcase_10 AC 541 ms
44,204 KB
testcase_11 AC 813 ms
111,080 KB
testcase_12 AC 797 ms
110,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N,M = map(int,readline().split())
As = np.array(read().split(),np.int64).reshape(M,N)

np.cumsum(As, out=As, axis=0)

def find_777(A):
    Acum = np.zeros(len(A) + 1)
    Acum[1:] = np.cumsum(A)
    x = np.searchsorted(Acum, Acum+777, 'right')
    x -= np.searchsorted(Acum, Acum+777, 'left')
    return np.any(x)

answer = 'YES' if any(find_777(A) for A in As) else 'NO'
print(answer)

0