結果

問題 No.1965 Heavier
ユーザー ntudantuda
提出日時 2022-06-25 10:40:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 137,536 KB
最終ジャッジ日時 2024-11-14 06:02:48
合計ジャッジ時間 4,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,212 KB
testcase_01 AC 37 ms
53,220 KB
testcase_02 AC 37 ms
52,804 KB
testcase_03 AC 38 ms
52,068 KB
testcase_04 AC 37 ms
52,236 KB
testcase_05 AC 37 ms
53,628 KB
testcase_06 AC 145 ms
136,804 KB
testcase_07 AC 142 ms
136,788 KB
testcase_08 AC 127 ms
112,492 KB
testcase_09 AC 143 ms
137,140 KB
testcase_10 AC 140 ms
137,500 KB
testcase_11 AC 140 ms
136,996 KB
testcase_12 AC 37 ms
52,276 KB
testcase_13 AC 37 ms
52,196 KB
testcase_14 AC 36 ms
53,440 KB
testcase_15 AC 140 ms
136,528 KB
testcase_16 AC 142 ms
136,600 KB
testcase_17 AC 107 ms
102,280 KB
testcase_18 AC 142 ms
136,836 KB
testcase_19 AC 134 ms
112,124 KB
testcase_20 AC 145 ms
136,660 KB
testcase_21 AC 127 ms
108,052 KB
testcase_22 AC 123 ms
108,760 KB
testcase_23 AC 102 ms
100,592 KB
testcase_24 AC 116 ms
104,024 KB
testcase_25 AC 136 ms
135,868 KB
testcase_26 AC 135 ms
135,356 KB
testcase_27 AC 140 ms
137,536 KB
testcase_28 AC 140 ms
137,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) + [0]
B = list(map(int, input().split())) + [0]
ans = 0
for i in range(N + 1):
    if i == 0:
        nowa = A[i] + B[i]
        nowb = A[i] - B[i]
        cnt = 1
    else:
        nexta = A[i] + B[i]
        nextb = A[i] - B[i]
        if nowa < nexta and nowb < nextb:
            cnt += 1
        else:
            ans += (cnt - 1) * cnt // 2
            cnt = 1
        nowa = nexta
        nowb = nextb
print(ans)
0