結果

問題 No.1435 Mmm......
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-03-25 02:45:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,688 KB
最終ジャッジ日時 2024-05-05 05:40:28
合計ジャッジ時間 15,951 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 725 ms
24,300 KB
testcase_12 AC 666 ms
23,360 KB
testcase_13 AC 654 ms
23,080 KB
testcase_14 WA -
testcase_15 AC 941 ms
28,164 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 943 ms
28,688 KB
testcase_19 AC 683 ms
24,024 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

t = 1

ans = 0
l = 0
while l < n-1:
  M = sorted(a[l:l+t+1])[-1]
  m1 = sorted(a[l:l+t+1])[0]
  m2 = sorted(a[l:l+t+1])[1]
  while l + t+1 <= n-1:
    t += 1
    x = M
    y = m1
    z = m2
    if a[l+t] > x:
      M = a[l+t]
    if y <= a[l+t] <= z:
      m2 = a[l+t]
    if a[l+t] < y:
      m2 = y
      m1 = a[l+t]
    if M <= m1 + m2:
      continue
    if M > m1 + m2:
      break
  if l + t == n-1:
    ans += t
    l += 1
    t -= 1
  else:
    ans += t -1
    l += 1
    if t-1 == 1:
      t = 1
    else:
      t = t -2


print(ans)
0