結果

問題 No.1965 Heavier
ユーザー platinumplatinum
提出日時 2022-05-04 09:10:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,220 KB
最終ジャッジ日時 2024-07-03 19:38:55
合計ジャッジ時間 7,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 257 ms
38,912 KB
testcase_07 AC 239 ms
38,992 KB
testcase_08 AC 270 ms
40,328 KB
testcase_09 AC 266 ms
41,012 KB
testcase_10 AC 267 ms
40,888 KB
testcase_11 AC 267 ms
41,136 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 270 ms
37,696 KB
testcase_16 AC 271 ms
37,436 KB
testcase_17 AC 181 ms
28,656 KB
testcase_18 AC 255 ms
38,324 KB
testcase_19 AC 245 ms
39,228 KB
testcase_20 AC 258 ms
38,420 KB
testcase_21 AC 230 ms
35,664 KB
testcase_22 AC 230 ms
35,296 KB
testcase_23 AC 165 ms
27,172 KB
testcase_24 AC 199 ms
32,584 KB
testcase_25 AC 256 ms
37,556 KB
testcase_26 AC 261 ms
37,680 KB
testcase_27 AC 256 ms
41,144 KB
testcase_28 AC 268 ms
41,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
l = 0
for r in range(1, N):
    if(A[r] - A[r-1] > abs(B[r] - B[r-1])):
        ans += r - l
    else:
        l = r

print(ans)
0