結果

問題 No.434 占い
ユーザー jjjj
提出日時 2016-10-14 23:06:29
言語 Fortran
(gFortran 13.2.0)
結果
TLE  
実行時間 -
コード長 594 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 32,372 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-22 09:43:01
合計ジャッジ時間 24,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,936 KB
testcase_01 AC 1 ms
9,636 KB
testcase_02 AC 1 ms
9,760 KB
testcase_03 AC 1 ms
8,192 KB
testcase_04 AC 1 ms
10,624 KB
testcase_05 AC 1 ms
8,192 KB
testcase_06 AC 10 ms
9,380 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 223 ms
5,248 KB
testcase_09 AC 24 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 88 ms
5,248 KB
testcase_13 AC 201 ms
5,248 KB
testcase_14 AC 24 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 225 ms
5,248 KB
testcase_18 AC 34 ms
5,248 KB
testcase_19 AC 91 ms
5,248 KB
testcase_20 AC 864 ms
5,248 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1 ms
5,248 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 91 ms
5,248 KB
testcase_28 AC 74 ms
5,248 KB
testcase_29 AC 122 ms
5,248 KB
testcase_30 AC 668 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::T,i,j,len
  character*100000::S
  integer::ss(100000)
  read *,T
  do i=1,T
     read *,S
     len = LEN_TRIM(S)
     do j=1,len
        ss(j) = ICHAR(S(j:j))-ICHAR('0')
     end do
     call uranai(ss, len)
  end do
contains
  subroutine uranai(ss, len)
    integer::ss(100000)
    integer::len,i,j,tmp
    do i=1,len-1
       do j=1,len-i
          ss(j) = ss(j) + ss(j+1)
          if(ss(j).ge.10) then
             ss(j) = ss(j)/10 + ss(j)-10
          end if
       end do
    end do
    print '(i0)', ss(1)
  end subroutine uranai
end program main
0