結果

問題 No.607 開通777年記念
ユーザー ThetaTheta
提出日時 2024-03-29 13:35:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-09-30 15:02:30
合計ジャッジ時間 1,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,456 KB
testcase_01 AC 31 ms
51,712 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 33 ms
51,840 KB
testcase_05 AC 31 ms
51,456 KB
testcase_06 AC 32 ms
51,584 KB
testcase_07 AC 61 ms
77,440 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 44 ms
61,440 KB
testcase_10 AC 38 ms
59,392 KB
testcase_11 AC 133 ms
85,248 KB
testcase_12 AC 130 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M = map(int, input().split())
    passengers = [0] * N
    diffs = [list(map(int, input().split())) for _ in range(M)]
    for diff in diffs:

        for idx in range(N):
            passengers[idx] += diff[idx]
        left_idx = 0
        right_idx = 0
        passenger_sum = 0
        while left_idx < N:
            if passenger_sum < 777:
                if right_idx == N:
                    break
                passenger_sum += passengers[right_idx]
                right_idx += 1
            elif passenger_sum > 777:
                passenger_sum -= passengers[left_idx]
                left_idx += 1
            else:
                print("YES")
                return

    print("NO")


if __name__ == "__main__":
    main()
0