結果

問題 No.607 開通777年記念
ユーザー wajima_wataruwajima_wataru
提出日時 2018-01-03 22:01:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 551 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-02 07:44:28
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys
readline = sys.stdin.readline

N, M = map(int, readline().split())
cur_num = [0 for x in range(N + 1)]
done = False
for _ in range(M):
    sum_val = 0
    for i, num in enumerate(list(map(int, readline().split()))):
        sum_val += num
        cur_num[i + 1] += sum_val
    if done:
        continue
    for i in range(N):
        for j in range(i + 1, N + 1):
            if cur_num[j] - cur_num[i] == 777:
                done = True
            elif cur_num[j] - cur_num[i] > 777:
                break
print('YES' if done else 'NO')
0