結果
問題 | No.121 傾向と対策:門松列(その2) |
ユーザー | さいど |
提出日時 | 2016-12-01 09:38:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,080 KB |
最終ジャッジ日時 | 2024-05-05 16:28:15 |
合計ジャッジ時間 | 14,454 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
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): for e in range(i+1,num-1): for p in range(e+1,num): if (li[i]-li[e])*(li[p]-li[e])*abs(li[i]-li[p])>0: count+=1 return count print(ret(n,a))