結果

問題 No.121 傾向と対策:門松列(その2)
ユーザー さいどさいど
提出日時 2016-12-01 09:46:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 378 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 125,628 KB
最終ジャッジ日時 2024-11-27 15:26:08
合計ジャッジ時間 61,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[int(i) for i in input().split(" ")]
def ret(num,li):
    count=0
    if num<3:return count
    for i in range(num-2):
        print("c")
        for e in range(i+1,num-1):
            if li[i]==li[e]:continue
            count+=len([p for p,q in enumerate(li[e+1:]) if (li[i]-li[e])*(li[p+e+1]-li[e])*abs(li[i]-li[p+e+1])>0])

    return count
print(ret(n,a)) 
0