結果

問題 No.1965 Heavier
ユーザー titiatitia
提出日時 2022-06-09 02:07:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,148 KB
最終ジャッジ日時 2024-09-21 05:22:17
合計ジャッジ時間 7,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 275 ms
38,916 KB
testcase_07 AC 276 ms
38,792 KB
testcase_08 AC 266 ms
40,460 KB
testcase_09 AC 265 ms
41,016 KB
testcase_10 AC 267 ms
40,892 KB
testcase_11 AC 272 ms
41,012 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 267 ms
37,696 KB
testcase_16 AC 270 ms
37,560 KB
testcase_17 AC 200 ms
28,904 KB
testcase_18 AC 278 ms
38,452 KB
testcase_19 AC 269 ms
39,136 KB
testcase_20 AC 277 ms
38,552 KB
testcase_21 AC 254 ms
35,796 KB
testcase_22 AC 248 ms
35,300 KB
testcase_23 AC 187 ms
27,176 KB
testcase_24 AC 234 ms
32,592 KB
testcase_25 AC 263 ms
37,692 KB
testcase_26 AC 255 ms
37,688 KB
testcase_27 AC 287 ms
41,144 KB
testcase_28 AC 286 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


now=0
for i in range(N-1):
    if A[i+1]-A[i]>abs(B[i+1]-B[i]):
        now+=1
    else:
        ANS+=now*(now+1)//2
        now=0
ANS+=now*(now+1)//2

print(ANS)
    
0