結果

問題 No.607 開通777年記念
ユーザー BQZetBQZet
提出日時 2017-12-11 17:24:55
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 33,920 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-05-07 17:07:29
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 31 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 175 ms
10,112 KB
testcase_12 AC 161 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

read *,N,M
allocate(a(M,N),b(M,N))

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

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

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

end
0