結果

問題 No.607 開通777年記念
ユーザー asaka189asaka189
提出日時 2018-02-03 22:31:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,380 KB
最終ジャッジ日時 2024-06-12 22:18:49
合計ジャッジ時間 4,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = []
for i in range(m):
	temp = list(map(int,input().split()))
	a.append(temp)
train = [0 for i in range(n)]
check = False

for i in range(m):
	for k in range(n):
		train[k] += a[i][k]
	print(train)
	if sum(train) == 777:
		check = True
	e = 0
	while e<n:
		temptotal = 0
		f = 0
		while temptotal < 777 and (e+f)!= n:
			temptotal += train[e+f]
			print(f,temptotal)
			f += 1
		if temptotal == 777:
			check = True
			break
		e += 1	
	
if check:
	print('YES')
else:
	print('No')
0