結果

問題 No.1965 Heavier
ユーザー ニックネームニックネーム
提出日時 2022-06-03 22:28:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,012 KB
最終ジャッジ日時 2024-09-21 02:55:44
合計ジャッジ時間 10,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

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