結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 453 ms
38,820 KB
testcase_07 AC 436 ms
38,820 KB
testcase_08 AC 433 ms
38,976 KB
testcase_09 AC 448 ms
42,544 KB
testcase_10 AC 449 ms
42,708 KB
testcase_11 AC 443 ms
42,672 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 469 ms
38,884 KB
testcase_16 AC 469 ms
38,828 KB
testcase_17 AC 333 ms
29,572 KB
testcase_18 AC 475 ms
38,492 KB
testcase_19 AC 477 ms
37,608 KB
testcase_20 AC 479 ms
40,000 KB
testcase_21 AC 435 ms
37,116 KB
testcase_22 AC 427 ms
35,320 KB
testcase_23 AC 292 ms
27,984 KB
testcase_24 AC 365 ms
32,492 KB
testcase_25 AC 441 ms
39,900 KB
testcase_26 AC 426 ms
37,980 KB
testcase_27 AC 444 ms
43,100 KB
testcase_28 AC 444 ms
42,976 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