結果

問題 No.1435 Mmm......
ユーザー da_abda_ab
提出日時 2021-03-19 23:15:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 526 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,272 KB
最終ジャッジ日時 2024-11-19 01:23:17
合計ジャッジ時間 14,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,568 KB
testcase_01 AC 26 ms
43,748 KB
testcase_02 AC 25 ms
17,568 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 311 ms
22,676 KB
testcase_07 AC 378 ms
25,416 KB
testcase_08 AC 448 ms
27,532 KB
testcase_09 AC 402 ms
26,408 KB
testcase_10 AC 347 ms
24,188 KB
testcase_11 AC 338 ms
24,656 KB
testcase_12 AC 318 ms
23,180 KB
testcase_13 AC 323 ms
23,160 KB
testcase_14 AC 242 ms
20,160 KB
testcase_15 AC 443 ms
28,256 KB
testcase_16 AC 378 ms
25,392 KB
testcase_17 AC 283 ms
21,664 KB
testcase_18 AC 448 ms
28,488 KB
testcase_19 AC 363 ms
23,980 KB
testcase_20 AC 411 ms
27,036 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1435 Mmm......

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

result=0
for l in range(n-1):
    minNum0=integers[l]
    minNum1=2*1e5+1
    maxNum=integers[l]

    r=l+1
    while r<n:
        if integers[r]<minNum0:
            minNum1=minNum0
            minNum0=integers[r]
        elif integers[r]<minNum1:
            minNum1=integers[r]
        if integers[r]>maxNum:
            maxNum=integers[r]
        if maxNum>minNum0+minNum1:
            break
        result+=1
        r+=1        

print(result)


0