結果

問題 No.1965 Heavier
ユーザー pitPpitP
提出日時 2022-06-03 23:42:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 131,464 KB
最終ジャッジ日時 2024-09-21 03:31:30
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 39 ms
52,320 KB
testcase_02 AC 34 ms
52,760 KB
testcase_03 AC 34 ms
52,208 KB
testcase_04 AC 35 ms
52,152 KB
testcase_05 AC 35 ms
52,832 KB
testcase_06 AC 137 ms
130,504 KB
testcase_07 AC 138 ms
130,236 KB
testcase_08 AC 126 ms
109,672 KB
testcase_09 AC 136 ms
130,696 KB
testcase_10 AC 135 ms
131,464 KB
testcase_11 AC 140 ms
130,716 KB
testcase_12 AC 36 ms
53,412 KB
testcase_13 AC 37 ms
52,084 KB
testcase_14 AC 37 ms
52,752 KB
testcase_15 AC 143 ms
129,944 KB
testcase_16 AC 146 ms
130,200 KB
testcase_17 AC 107 ms
100,336 KB
testcase_18 AC 139 ms
130,056 KB
testcase_19 AC 130 ms
109,184 KB
testcase_20 AC 140 ms
130,128 KB
testcase_21 AC 122 ms
104,832 KB
testcase_22 AC 119 ms
105,944 KB
testcase_23 AC 97 ms
98,600 KB
testcase_24 AC 109 ms
101,472 KB
testcase_25 AC 129 ms
129,468 KB
testcase_26 AC 129 ms
128,932 KB
testcase_27 AC 135 ms
130,952 KB
testcase_28 AC 135 ms
131,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

cnt = 1
ans = 0
for i in range(n-1):
    if a[i] + max(b[i],b[i+1]) < a[i+1] + min(b[i],b[i+1]):
        cnt += 1
    else:
        ans += cnt * (cnt-1) //2
        cnt = 1

ans += cnt * (cnt-1) //2
print(ans)
0