結果

問題 No.1965 Heavier
ユーザー kakel-sankakel-san
提出日時 2023-10-08 23:01:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 112,104 KB
実行使用メモリ 64,748 KB
最終ジャッジ日時 2024-07-26 18:13:55
合計ジャッジ時間 7,914 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,872 KB
testcase_01 AC 27 ms
25,312 KB
testcase_02 AC 27 ms
25,396 KB
testcase_03 AC 26 ms
25,432 KB
testcase_04 AC 28 ms
27,260 KB
testcase_05 AC 28 ms
27,132 KB
testcase_06 AC 191 ms
57,248 KB
testcase_07 AC 190 ms
59,412 KB
testcase_08 AC 179 ms
59,492 KB
testcase_09 AC 199 ms
60,180 KB
testcase_10 AC 191 ms
60,016 KB
testcase_11 AC 193 ms
59,888 KB
testcase_12 AC 26 ms
27,256 KB
testcase_13 AC 26 ms
25,264 KB
testcase_14 AC 25 ms
27,100 KB
testcase_15 AC 192 ms
59,452 KB
testcase_16 AC 192 ms
57,516 KB
testcase_17 AC 141 ms
47,964 KB
testcase_18 AC 189 ms
55,100 KB
testcase_19 AC 188 ms
56,040 KB
testcase_20 AC 187 ms
59,060 KB
testcase_21 AC 176 ms
52,640 KB
testcase_22 AC 171 ms
54,240 KB
testcase_23 AC 128 ms
48,304 KB
testcase_24 AC 156 ms
54,432 KB
testcase_25 AC 187 ms
56,376 KB
testcase_26 AC 177 ms
55,720 KB
testcase_27 AC 208 ms
64,564 KB
testcase_28 AC 215 ms
64,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var b = NList;
        var dp = new int[n];
        var ans = 0L;
        for (var i = 1; i < n; ++i)
        {
            if (a[i] - b[i] > a[i - 1] - b[i - 1] && a[i] + b[i] > a[i - 1] + b[i - 1]) dp[i] = dp[i - 1] + 1;
            ans += dp[i];
        }
        WriteLine(ans);
    }
}
0