結果

問題 No.1965 Heavier
ユーザー sotanishysotanishy
提出日時 2022-06-03 21:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 132,832 KB
最終ジャッジ日時 2024-09-21 02:30:11
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 144 ms
132,124 KB
testcase_07 AC 144 ms
132,060 KB
testcase_08 AC 126 ms
110,876 KB
testcase_09 AC 138 ms
132,672 KB
testcase_10 AC 138 ms
132,532 KB
testcase_11 AC 139 ms
132,152 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 37 ms
52,224 KB
testcase_15 AC 138 ms
131,868 KB
testcase_16 AC 139 ms
131,892 KB
testcase_17 AC 106 ms
98,404 KB
testcase_18 AC 141 ms
132,400 KB
testcase_19 AC 129 ms
110,588 KB
testcase_20 AC 140 ms
131,940 KB
testcase_21 AC 121 ms
106,700 KB
testcase_22 AC 123 ms
107,648 KB
testcase_23 AC 100 ms
96,000 KB
testcase_24 AC 114 ms
103,172 KB
testcase_25 AC 135 ms
131,808 KB
testcase_26 AC 133 ms
131,172 KB
testcase_27 AC 137 ms
132,448 KB
testcase_28 AC 138 ms
132,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
p = [A[i] + B[i] for i in range(N)]
m = [A[i] - B[i] for i in range(N)]
ans = 0
l = 0
for r in range(1, N):
    if p[r-1] >= p[r]:
        l = r
    if m[r-1] >= m[r]:
        l = r
    ans += r - l
print(ans)
0