結果

問題 No.1965 Heavier
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-06-03 22:44:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,960 KB
実行使用メモリ 139,400 KB
最終ジャッジ日時 2024-09-21 03:04:41
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,952 KB
testcase_01 AC 34 ms
52,064 KB
testcase_02 AC 34 ms
52,344 KB
testcase_03 AC 36 ms
53,036 KB
testcase_04 AC 36 ms
52,432 KB
testcase_05 AC 33 ms
52,820 KB
testcase_06 AC 142 ms
138,584 KB
testcase_07 AC 141 ms
138,308 KB
testcase_08 AC 128 ms
114,408 KB
testcase_09 AC 139 ms
139,172 KB
testcase_10 AC 138 ms
139,272 KB
testcase_11 AC 141 ms
138,912 KB
testcase_12 AC 34 ms
53,856 KB
testcase_13 AC 34 ms
53,148 KB
testcase_14 AC 34 ms
52,092 KB
testcase_15 AC 144 ms
138,668 KB
testcase_16 AC 145 ms
138,508 KB
testcase_17 AC 109 ms
101,976 KB
testcase_18 AC 143 ms
138,228 KB
testcase_19 AC 133 ms
114,068 KB
testcase_20 AC 142 ms
137,936 KB
testcase_21 AC 122 ms
109,444 KB
testcase_22 AC 122 ms
110,300 KB
testcase_23 AC 97 ms
100,584 KB
testcase_24 AC 114 ms
105,160 KB
testcase_25 AC 138 ms
137,888 KB
testcase_26 AC 137 ms
136,732 KB
testcase_27 AC 140 ms
139,400 KB
testcase_28 AC 143 ms
139,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split())) + [10**10]
b = list(map(int,input().split())) + [10 ** 20]
cnt = 0
ans = 0
for i in range(1,n+1):
    sa = a[i] - a[i-1]
    if b[i-1] - sa <  b[i] < b[i-1] + sa:
        cnt += 1
    else:
        ans += cnt*(cnt+1)//2
        cnt = 0
print(ans)
0