結果
問題 | No.999 てん vs. ほむ |
ユーザー | silviasetitech |
提出日時 | 2020-03-05 09:56:12 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 882 ms / 2,000 ms |
コード長 | 1,253 bytes |
コンパイル時間 | 2,249 ms |
コンパイル使用メモリ | 77,016 KB |
実行使用メモリ | 58,784 KB |
最終ジャッジ日時 | 2024-10-14 00:48:52 |
合計ジャッジ時間 | 15,381 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top * * @author silviase */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); tenhomu solver = new tenhomu(); solver.solve(1, in, out); out.close(); } static class tenhomu { public void solve(int testNumber, Scanner in, PrintWriter out) { int n = in.nextInt(); long[] accEven = new long[n + 1]; long[] accOdd = new long[n + 1]; long max = -1; long cmp = 0; for (int i = 1; i <= n; i++) { accEven[i] = in.nextInt(); accOdd[i] = in.nextInt(); cmp += accOdd[i] - accEven[i]; } for (int i = 0; i <= n; i++) { max = Math.max(max, cmp = cmp + (accEven[i] - accOdd[i]) * 2); } out.println(max); } } }