結果

問題 No.5 数字のブロック
ユーザー concon
提出日時 2018-11-05 19:05:56
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 32,896 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 12:41:37
合計ジャッジ時間 2,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 93 ms
6,820 KB
testcase_04 AC 18 ms
6,820 KB
testcase_05 AC 142 ms
6,816 KB
testcase_06 AC 62 ms
6,820 KB
testcase_07 AC 43 ms
6,820 KB
testcase_08 AC 74 ms
6,816 KB
testcase_09 AC 11 ms
6,820 KB
testcase_10 AC 136 ms
6,816 KB
testcase_11 AC 34 ms
6,816 KB
testcase_12 AC 95 ms
6,820 KB
testcase_13 AC 125 ms
6,820 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 141 ms
6,820 KB
testcase_17 AC 205 ms
6,820 KB
testcase_18 AC 166 ms
6,820 KB
testcase_19 AC 231 ms
6,820 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 1 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 18 ms
6,820 KB
testcase_30 AC 13 ms
6,816 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program math_block
implicit none
integer(8) A,i,l,m,n
real(8),allocatable :: x(:)
read(*,*) l
read(*,*) n
allocate (x(n))
read(*,*) (x(m),m=1,n)
call mat(x,n)
A=0
do i=1,n
   A=A+x(i)
   if (A>l) exit
end do
write(*,*) (i-1)
end program

subroutine mat(x,n)
integer(8) n,j,i,t
real(8),dimension(n) ::x
  do i=1,n-1
     do j=i+1,n
        if(x(i) > x(j))then
           t=x(i)
           x(i)=x(j)
           x(j)=t
        end if
     end do
  end do
end subroutine
0