結果

問題 No.607 開通777年記念
ユーザー BQZetBQZet
提出日時 2017-12-12 03:28:41
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 33,788 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-05-08 00:47:51
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 52 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 611 ms
6,272 KB
testcase_12 AC 682 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


do i=1,M
 do j=1,N
  if(j==1) then
   do k=1,N
    b(k)=b(k)+a(i,k)
    c(k)=c(k-1)+b(k)
   end do
  end if
  do k=1,N-1
   if(c(j+k-1)-c(k-1)==777) then
    print *,'YES'
    stop
   end if
  end do
 end do
end do

 print *,'NO'

end
0