結果

問題 No.1965 Heavier
ユーザー ntudantuda
提出日時 2022-06-25 10:32:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 137,664 KB
最終ジャッジ日時 2024-11-14 05:52:24
合計ジャッジ時間 6,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,792 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 36 ms
52,332 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,440 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 122 ms
112,592 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 135 ms
135,732 KB
testcase_26 AC 139 ms
135,204 KB
testcase_27 AC 139 ms
137,532 KB
testcase_28 AC 137 ms
137,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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