結果

問題 No.607 開通777年記念
ユーザー BQZetBQZet
提出日時 2017-12-12 01:51:52
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 34,388 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-30 21:17:12
合計ジャッジ時間 4,478 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 32 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 776 ms
6,400 KB
testcase_12 AC 848 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

integer::N,M,i,j,k,switch=0,X
integer,allocatable,dimension(:,:)::a
integer,allocatable,dimension(:)::b

read *,N,M
allocate(a(M,N),b(N))
b=0
do i=1,M
 read *,a(i,:)
end do

do i=1,M
 do j=1,N
  if(j==1) then
   do k=1,N
    b(k)=b(k)+a(i,k)
   end do
  if(sum(b(:))<777) exit
  end if
  if(b(j)==0) cycle
  do k=1,N
   if(b(k)==0) cycle
   if(sum(b(j:k))==777) then
    switch=1
   end if
   if(sum(b(j:k))>=777) exit
  end do
  if(sum(b(j:k))==777) exit
 end do
 if(sum(b(j:k))==777) exit
end do

if(switch==1) then 
 print *,'YES'
else
 print *,'NO'
end if

end
0