結果
| 問題 |
No.437 cwwゲーム
|
| コンテスト | |
| ユーザー |
jj
|
| 提出日時 | 2017-03-18 02:18:59 |
| 言語 | Fortran (gFortran 14.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 1,488 bytes |
| コンパイル時間 | 261 ms |
| コンパイル使用メモリ | 34,168 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-12 08:42:58 |
| 合計ジャッジ時間 | 1,439 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 41 |
ソースコード
program main
implicit none
character*12::S
integer::i,lenk
integer*8,allocatable::N(:)
read *,S
lenk = LEN_TRIM(S)
if(lenk.lt.3) then
print '("0")'
return
end if
allocate(N(lenk))
do i=1,lenk
N(i) = ICHAR(S(i:i))-ICHAR('0')
end do
print '(i0)', partmax(N)
contains
recursive function partmax(N) result(pmax)
integer*8,intent(in) ::N(:)
integer*8,allocatable::M(:)
integer*8::cww,pmax,i,j,k,l,len
pmax = 0
len = size(N)
if(len .gt. 5) then
do i=1,len-2
if(N(i).ne.0) then
do j=i+1,len-1
if(N(i).ne.N(j))then
do k=j+1, len
if(N(j).eq.N(k)) then
M = pack(N, (/(l.ne.i.and.l.ne.j.and.l.ne.k,l=1,len)/))
cww = N(i)*100+N(j)*11
pmax = MAX(cww+partmax(M),pmax)
end if
end do
end if
end do
end if
end do
else
do i=1,len-2
if(N(i).ne.0) then
do j=i+1,len-1
if(N(i).ne.N(j))then
do k=j+1, len
if(N(j).eq.N(k)) then
cww = N(i)*100+N(j)*11
pmax = MAX(cww,pmax)
end if
end do
end if
end do
end if
end do
endif
end function partmax
end program main
jj