結果

問題 No.607 開通777年記念
ユーザー pluto77pluto77
提出日時 2017-12-30 15:57:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,501 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-06-01 08:40:14
合計ジャッジ時間 4,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 11 ms
6,400 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 779 ms
8,448 KB
testcase_08 AC 11 ms
6,272 KB
testcase_09 AC 26 ms
6,656 KB
testcase_10 AC 16 ms
6,528 KB
testcase_11 AC 1,403 ms
38,912 KB
testcase_12 AC 1,501 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_607
import sys

n,m=map(int,raw_input().split())
a=[]
for i in xrange(m):
 b=map(int,raw_input().split())
 a.append(b)
c=a[0]
l,r=0,1
for i in range(n*2):
 s=sum(c[l:r])
 if s==777:
  print 'YES'
  exit()
 elif s<777:
  r+=1
 else:
  l+=1
 if r>n:
  continue
for i in xrange(1,m):
 for j in xrange(n):
  c[j]+=a[i][j]
 l,r=0,1
 for i in range(n*2):
  s=sum(c[l:r])
  if s==777:
   print 'YES'
   exit()
  elif s<777:
   r+=1
  else:
   l+=1
  if r>n:
   continue
print 'NO'
0