結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 MLE -
testcase_15 AC 2 ms
5,376 KB
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 -
testcase_26 WA -
testcase_27 AC 21 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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*2
  do i=3,N-1
     if(memo(tmp).ne.0) then
        print '(a)', "NO"
        return
     end if
  end do

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