結果

問題 No.297 カードの数式
ユーザー jjjj
提出日時 2017-01-08 09:03:29
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 1,772 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 33,228 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 23:19:55
合計ジャッジ時間 1,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 WA -
testcase_14 AC 1 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::N,i
  character::c(15)
  integer::num(0:9),num2(0:9),plus,minus,char
  integer::minvalue,maxvalue
  data num/10*0/,plus/0/,minus/0/,minvalue/0/,maxvalue/0/

  read *,N
  read *,c(1:N)

  do i=1,N
     if(c(i).eq.'+') then
        plus = plus + 1
     else if(c(i).eq.'-') then
        minus = minus + 1
     else
        char= ICHAR(c(i))-ICHAR('0')
        num(char) = num(char) + 1
     end if
  end do
  num2 = num

  do i=1, minus
     maxvalue = maxvalue - get_min_num(num)
  end do
  do i=1, plus
     maxvalue = maxvalue + get_min_num(num)
  end do
  do i=1, N-(minus+plus)*2
     maxvalue = maxvalue + get_min_num(num)*10**(i-1)
  end do

  if(minus.eq.0) then
     do i=1, plus
        minvalue = minvalue + get_max_num(num)
     end do
     do i=1, N-2*plus-num(0)
        minvalue = minvalue + get_max_num(num)*10**(i-1)
     end do
  else
     minvalue = - maxvalue
  endif
  print '(i0," ",i0)',maxvalue, minvalue
contains
  integer function get_max(num, plus, minus, N) result(maxvalue)
    integer::N,i
    integer::num(10),plus,minus
    integer::digitnum,maxdigit
    digitnum = N - plus - minus
    maxdigit = digitnum - plus - minus
    maxvalue = 0

    do i=1,minus
       do

       end do
    end do
  end function get_max
  function get_min_num(num) result(v)
    integer::num(0:9)
    integer::i, v
    do i=0, 9
       if(num(i).ne.0) then
          num(i) = num(i)-1
          v = i
          return
       end if
    end do
  end function get_min_num
  function get_max_num(num) result(v)
    integer::num(0:9)
    integer::i, v
    do i=9, 0, -1
       if(num(i).ne.0) then
          num(i) = num(i)-1
          v = i
          return
       end if
    end do
  end function get_max_num
end program main
0