結果
問題 | No.865 24時間降水量 |
ユーザー | htensai |
提出日時 | 2020-05-15 17:48:24 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,135 bytes |
コンパイル時間 | 2,459 ms |
コンパイル使用メモリ | 77,388 KB |
実行使用メモリ | 63,216 KB |
最終ジャッジ日時 | 2024-09-19 05:00:01 |
合計ジャッジ時間 | 11,986 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 148 ms
41,244 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 146 ms
41,224 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 139 ms
41,364 KB |
testcase_19 | AC | 139 ms
41,084 KB |
testcase_20 | AC | 137 ms
40,176 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] arr = new int[n + 1]; int[] sums = new int[n + 1]; int[] total24 = new int[n + 1 - 23]; for (int i = 1; i <= n; i++) { arr[i] = sc.nextInt(); sums[i] = sums[i - 1] + arr[i]; } int max = 0; for (int i = 24; i <= n; i++) { total24[i - 23] = sums[i] - sums[i - 24]; max = Math.max(total24[i - 23], max); } int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { int time = sc.nextInt(); int value = sc.nextInt(); int add = value - arr[time]; arr[i] = value; for (int j = Math.max(time - 23, 1); j <= time && j < total24.length; j++) { total24[j] += add; max = Math.max(max, total24[j]); } sb.append(max).append("\n"); } System.out.print(sb); } }