結果

問題 No.607 開通777年記念
ユーザー BQZetBQZet
提出日時 2017-12-12 02:50:28
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 33,644 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 00:13:41
合計ジャッジ時間 4,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 60 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 730 ms
6,940 KB
testcase_12 AC 784 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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
  end if
   c=sum(b(1:j))
  do k=1,N-j+1
   if(c==777) then
    print *,'YES'
    stop
   end if
   c=c-b(k)+b(k+j)
  end do
 end do
end do

 print *,'NO'

end
0