結果

問題 No.607 開通777年記念
ユーザー ntudantuda
提出日時 2024-08-29 21:14:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 76,868 KB
最終ジャッジ日時 2024-08-29 21:14:36
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,752 KB
testcase_01 AC 39 ms
52,772 KB
testcase_02 AC 41 ms
52,556 KB
testcase_03 AC 38 ms
51,876 KB
testcase_04 AC 38 ms
52,468 KB
testcase_05 AC 40 ms
52,468 KB
testcase_06 AC 39 ms
53,008 KB
testcase_07 AC 54 ms
72,904 KB
testcase_08 AC 38 ms
52,604 KB
testcase_09 AC 59 ms
67,036 KB
testcase_10 AC 39 ms
52,064 KB
testcase_11 AC 136 ms
76,740 KB
testcase_12 AC 147 ms
76,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
D = [0] * (N+1)
sa = 0
for _ in range(M):
    A = list(map(int,input().split()))
    j = -1
    sa = 0
    for i in range(N):
        sa += A[i]
        D[i] += sa
        while j <= i and D[i] - D[j] > 777:
            j += 1
        if D[i] - D[j] == 777:
            print("YES")
            exit()
print("NO")
0