結果

問題 No.1965 Heavier
ユーザー TsubajiroTsubajiro
提出日時 2022-07-02 19:35:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,104 KB
最終ジャッジ日時 2024-11-27 16:07:11
合計ジャッジ時間 12,249 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 443 ms
38,564 KB
testcase_07 AC 442 ms
38,816 KB
testcase_08 AC 426 ms
38,848 KB
testcase_09 AC 439 ms
42,588 KB
testcase_10 AC 441 ms
42,336 KB
testcase_11 AC 447 ms
42,464 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 464 ms
38,756 KB
testcase_16 AC 463 ms
39,008 KB
testcase_17 AC 338 ms
29,700 KB
testcase_18 AC 473 ms
38,240 KB
testcase_19 AC 461 ms
37,512 KB
testcase_20 AC 473 ms
39,948 KB
testcase_21 AC 441 ms
37,228 KB
testcase_22 AC 426 ms
35,448 KB
testcase_23 AC 290 ms
27,880 KB
testcase_24 AC 359 ms
32,240 KB
testcase_25 AC 439 ms
39,644 KB
testcase_26 AC 446 ms
37,724 KB
testcase_27 AC 452 ms
42,924 KB
testcase_28 AC 449 ms
43,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A= list(map(int, input().split()))
B = list(map(int, input().split()))

ans=0
C = []
for i in range(N-1):
    if A[i]+max(B[i],B[i+1])<A[i+1]+min(B[i],B[i+1]):
        C.append(1)
    else:
        C.append(0)

left=0
#print(C)
while left<=N-2:
    count=0
    if C[left]==0:
        left+=1
        continue
    for right in range(left,N-1):
        if C[right]==1:
            count+=1
        else:
            break
    left+=count
    ans+=(count+1)*count//2
print(ans)
0