結果

問題 No.406 鴨等間隔の法則
ユーザー jjjj
提出日時 2016-08-06 11:48:51
言語 Fortran
(gFortran 13.2.0)
結果
MLE  
実行時間 -
コード長 697 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 32,512 KB
実行使用メモリ 272,512 KB
最終ジャッジ日時 2024-04-24 20:08:07
合計ジャッジ時間 6,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
135,168 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 181 ms
238,464 KB
testcase_05 AC 84 ms
115,968 KB
testcase_06 AC 89 ms
121,088 KB
testcase_07 AC 93 ms
123,392 KB
testcase_08 AC 184 ms
236,928 KB
testcase_09 AC 195 ms
251,904 KB
testcase_10 AC 101 ms
134,784 KB
testcase_11 AC 163 ms
216,832 KB
testcase_12 AC 122 ms
159,488 KB
testcase_13 AC 112 ms
150,272 KB
testcase_14 MLE -
testcase_15 AC 3 ms
5,376 KB
testcase_16 WA -
testcase_17 TLE -
testcase_18 AC 43 ms
31,744 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 47 ms
48,384 KB
testcase_22 WA -
testcase_23 AC 132 ms
166,784 KB
testcase_24 WA -
testcase_25 AC 199 ms
253,568 KB
testcase_26 WA -
testcase_27 AC 21 ms
5,376 KB
testcase_28 AC 192 ms
253,824 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 193 ms
246,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::N,i,kankaku,tmp
  integer,allocatable::x(:)
  integer::memo(0:10**8)
  integer::min1,min2
  data memo/100000001*0/
  read *, N
  allocate(x(N))
  read *, x

  min1 = MIN(x(1),x(2))
  min2 = MAX(x(1),x(2))
  if(min1.eq.min2) then
     print '(a)', "NO"
     return
  end if


  do i=3,N
     memo(x(i)) = 1
     if(min1.gt.x(i)) then
        min2 = min1
        min1 = x(i)
     else if(min2.gt.x(i)) then
        min2 = x(i)
     end if
  end do

  kankaku = min2 - min1
  tmp = min1 + kankaku
  do i=3,N-1
     tmp = tmp + kankaku
     if(memo(tmp).ne.0) then
        print '(a)', "NO"
        return
     end if
  end do

  print '(a)', "YES"
end program
0