結果

問題 No.397 NO MORE KADOMATSU
ユーザー jjjj
提出日時 2017-01-11 22:09:35
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 32,256 KB
実行使用メモリ 25,464 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:44:55
合計ジャッジ時間 2,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,220 KB
testcase_01 AC 23 ms
25,220 KB
testcase_02 AC 23 ms
25,220 KB
testcase_03 AC 27 ms
24,836 KB
testcase_04 AC 23 ms
25,220 KB
testcase_05 AC 27 ms
24,836 KB
testcase_06 AC 27 ms
24,580 KB
testcase_07 AC 28 ms
24,836 KB
testcase_08 AC 24 ms
24,964 KB
testcase_09 AC 23 ms
24,836 KB
testcase_10 AC 56 ms
25,220 KB
testcase_11 AC 23 ms
24,580 KB
testcase_12 AC 33 ms
25,220 KB
testcase_13 AC 38 ms
24,580 KB
testcase_14 AC 41 ms
24,964 KB
testcase_15 AC 39 ms
25,220 KB
testcase_16 AC 24 ms
25,464 KB
testcase_17 AC 22 ms
24,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::N,i,j,tmp,count
  integer::A(100)
  integer::swaps(5000)
  data swaps/5000*-1/,count/0/

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

  do i=1, N-1
     do j=1, N-i
        if(A(j).gt.A(j+1)) then
           tmp = A(j+1)
           A(j+1) = A(j)
           A(j) = tmp
           count = count + 1
           swaps(count) = j
        end if
     end do
  end do
  print '(i0)',count
  do i=1,count
     print '(i0," ",i0)',swaps(i)-1,swaps(i)
  end do
end program
0