結果

問題 No.1965 Heavier
ユーザー rlangevinrlangevin
提出日時 2022-08-29 12:38:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 131,364 KB
最終ジャッジ日時 2024-11-06 10:45:44
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 38 ms
52,092 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,472 KB
testcase_04 AC 40 ms
53,144 KB
testcase_05 AC 39 ms
52,252 KB
testcase_06 AC 142 ms
130,528 KB
testcase_07 AC 140 ms
130,772 KB
testcase_08 AC 123 ms
109,544 KB
testcase_09 AC 139 ms
131,228 KB
testcase_10 AC 140 ms
130,984 KB
testcase_11 AC 138 ms
131,244 KB
testcase_12 AC 38 ms
52,436 KB
testcase_13 AC 38 ms
52,200 KB
testcase_14 AC 39 ms
52,500 KB
testcase_15 AC 141 ms
130,476 KB
testcase_16 AC 143 ms
130,264 KB
testcase_17 AC 108 ms
100,460 KB
testcase_18 AC 142 ms
130,416 KB
testcase_19 AC 130 ms
109,400 KB
testcase_20 AC 142 ms
130,512 KB
testcase_21 AC 126 ms
105,232 KB
testcase_22 AC 124 ms
106,052 KB
testcase_23 AC 99 ms
98,464 KB
testcase_24 AC 115 ms
101,828 KB
testcase_25 AC 131 ms
129,636 KB
testcase_26 AC 132 ms
129,056 KB
testcase_27 AC 135 ms
131,120 KB
testcase_28 AC 137 ms
131,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Gauss(n):
    return n * (n + 1)//2

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans, cnt = 0, 0
for i in range(N - 1):
    if A[i + 1] - A[i] > abs(B[i + 1] - B[i]):
        cnt += 1
    else:
        ans += Gauss(cnt)
        cnt = 0
ans += Gauss(cnt)
print(ans)
0