結果
問題 | No.865 24時間降水量 |
ユーザー | ks2m |
提出日時 | 2019-08-16 22:12:16 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 799 ms / 2,000 ms |
コード長 | 1,236 bytes |
コンパイル時間 | 3,366 ms |
コンパイル使用メモリ | 77,320 KB |
実行使用メモリ | 69,220 KB |
最終ジャッジ日時 | 2024-09-22 17:15:31 |
合計ジャッジ時間 | 7,502 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,632 KB |
testcase_01 | AC | 51 ms
37,164 KB |
testcase_02 | AC | 51 ms
36,968 KB |
testcase_03 | AC | 51 ms
36,900 KB |
testcase_04 | AC | 51 ms
37,112 KB |
testcase_05 | AC | 100 ms
38,996 KB |
testcase_06 | AC | 102 ms
38,792 KB |
testcase_07 | AC | 91 ms
38,988 KB |
testcase_08 | AC | 100 ms
38,744 KB |
testcase_09 | AC | 92 ms
38,852 KB |
testcase_10 | AC | 177 ms
43,264 KB |
testcase_11 | AC | 175 ms
43,208 KB |
testcase_12 | AC | 174 ms
43,044 KB |
testcase_13 | AC | 165 ms
43,120 KB |
testcase_14 | AC | 178 ms
42,924 KB |
testcase_15 | AC | 799 ms
69,164 KB |
testcase_16 | AC | 755 ms
65,588 KB |
testcase_17 | AC | 776 ms
69,220 KB |
testcase_18 | AC | 51 ms
37,104 KB |
testcase_19 | AC | 51 ms
36,780 KB |
testcase_20 | AC | 50 ms
37,120 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } int q = Integer.parseInt(br.readLine()); int[] t = new int[q]; int[] v = new int[q]; for (int i = 0; i < q; i++) { sa = br.readLine().split(" "); t[i] = Integer.parseInt(sa[0]) - 1; v[i] = Integer.parseInt(sa[1]); } br.close(); int[] b = new int[n]; int sum = 0; for (int i = 0; i < 24; i++) { sum += a[i]; } b[23] = sum; for (int i = 24; i < n; i++) { sum -= a[i - 24]; sum += a[i]; b[i] = sum; } int max = 0; for (int i = 23; i < n; i++) { max = Math.max(max, b[i]); } PrintWriter pw = new PrintWriter(System.out); for (int i = 0; i < q; i++) { int d = v[i] - a[t[i]]; a[t[i]] = v[i]; for (int j = t[i]; j < Math.min(t[i] + 24, n); j++) { b[j] += d; max = Math.max(max, b[j]); } pw.println(max); } pw.flush(); } }