結果
問題 | No.5 数字のブロック |
ユーザー | con |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
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