結果

問題 No.607 開通777年記念
ユーザー KozumaKozuma
提出日時 2018-01-18 23:30:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 426 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-12-24 07:57:51
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def densya():
	N, M = map(int, input().split())
	n = [0 for _ in range(N)]

	ans = False

	for i in range(M):
		add = list(map(int, input().split()))
		n = [n[k] + add[k] for k in range(N)]

		for j in range(N):
			sum = 0
			count = 0
			while sum < 777:
				if j + count >= N:
					break
				sum += n[j + count]
				count += 1

				if sum == 777:
					ans = True

	return ans

if densya():
	print("YES")
else:
	print("NO")

0