結果

問題 No.865 24時間降水量
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-18 09:34:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,958 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 77,612 KB
実行使用メモリ 63,980 KB
最終ジャッジ日時 2024-10-01 13:38:33
合計ジャッジ時間 13,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,120 KB
testcase_01 AC 128 ms
41,096 KB
testcase_02 AC 118 ms
40,072 KB
testcase_03 AC 128 ms
41,400 KB
testcase_04 AC 119 ms
41,252 KB
testcase_05 AC 219 ms
45,620 KB
testcase_06 AC 220 ms
44,860 KB
testcase_07 AC 225 ms
44,736 KB
testcase_08 AC 244 ms
45,196 KB
testcase_09 AC 241 ms
45,244 KB
testcase_10 AC 433 ms
48,048 KB
testcase_11 AC 386 ms
47,744 KB
testcase_12 AC 363 ms
48,140 KB
testcase_13 AC 398 ms
47,684 KB
testcase_14 AC 434 ms
48,116 KB
testcase_15 AC 1,956 ms
63,876 KB
testcase_16 AC 1,958 ms
63,788 KB
testcase_17 AC 1,958 ms
63,980 KB
testcase_18 AC 116 ms
41,392 KB
testcase_19 AC 124 ms
41,100 KB
testcase_20 AC 120 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long[] rui = new long[n];
    long[] a = new long[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextLong();
      if(i == 0) {
        rui[i] = a[i];
      } else {
        rui[i] = rui[i - 1] + a[i];
      }
    }
    long[] kukan = new long[n - 23];
    for(int i = 0; i < n - 23; i++) {
      if(i == 0) {
        kukan[i] = rui[i + 23]; 
      } else {
        kukan[i] = rui[i + 23] - rui[i - 1];
      }  
    }
    long ans = 0;
    for(int i = 0; i < n - 23; i++) {
      ans = Math.max(ans, kukan[i]);
    }
    int q = sc.nextInt();
    for(int i = 0; i < q; i++) {
      int t = sc.nextInt() - 1;
      long v = sc.nextLong();
      long sa = v - a[t];
      a[t] = v;
      for(int j = t - 23; j <= t; j++) {
        if((j >= 0) && (j < n - 23)) {
          kukan[j] = kukan[j] + sa;
          ans = Math.max(ans, kukan[j]);
        } 
      }
      System.out.println(ans);
    }
  }
}
0