結果

問題 No.999 てん vs. ほむ
ユーザー htensaihtensai
提出日時 2020-03-25 10:49:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 770 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 58,292 KB
最終ジャッジ日時 2024-06-10 09:53:52
合計ジャッジ時間 13,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,748 KB
testcase_01 AC 101 ms
39,964 KB
testcase_02 AC 105 ms
40,356 KB
testcase_03 AC 125 ms
41,848 KB
testcase_04 AC 127 ms
41,964 KB
testcase_05 AC 130 ms
41,472 KB
testcase_06 AC 121 ms
41,344 KB
testcase_07 AC 143 ms
42,108 KB
testcase_08 AC 227 ms
46,448 KB
testcase_09 AC 617 ms
53,876 KB
testcase_10 AC 459 ms
48,268 KB
testcase_11 AC 434 ms
48,280 KB
testcase_12 AC 548 ms
48,460 KB
testcase_13 AC 713 ms
56,720 KB
testcase_14 AC 770 ms
56,248 KB
testcase_15 AC 715 ms
58,292 KB
testcase_16 AC 749 ms
58,160 KB
testcase_17 AC 565 ms
53,004 KB
testcase_18 AC 663 ms
52,776 KB
testcase_19 AC 636 ms
53,108 KB
testcase_20 AC 695 ms
53,008 KB
testcase_21 AC 752 ms
57,368 KB
testcase_22 AC 720 ms
54,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n + 2];
        long[] left = new long[n + 2];
        for (int i = 1; i <= n; i++) {
            arr[i] = sc.nextInt() - sc.nextInt();
            left[i] = left[i - 1] + arr[i];
        }
        long[] right = new long[n + 2];
        for (int i = n; i >= 1; i--) {
            right[i] = right[i + 1] - arr[i];
        }
        long max = Long.MIN_VALUE;
        for (int i = 0; i <= n; i++) {
            max = Math.max(max, left[i] + right[i + 1]);
        }
        System.out.println(max);
    }
}
0