結果

問題 No.1160 Strange Bowling
ユーザー tentententen
提出日時 2023-02-16 16:23:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,844 bytes
コンパイル時間 2,552 ms
コンパイル使用メモリ 91,620 KB
実行使用メモリ 49,888 KB
最終ジャッジ日時 2024-07-18 16:42:42
合計ジャッジ時間 9,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,504 KB
testcase_01 AC 48 ms
37,200 KB
testcase_02 AC 50 ms
36,936 KB
testcase_03 AC 48 ms
36,992 KB
testcase_04 AC 49 ms
37,004 KB
testcase_05 AC 50 ms
36,820 KB
testcase_06 AC 48 ms
37,108 KB
testcase_07 AC 49 ms
37,064 KB
testcase_08 AC 51 ms
36,924 KB
testcase_09 AC 52 ms
36,984 KB
testcase_10 AC 217 ms
47,780 KB
testcase_11 AC 184 ms
45,240 KB
testcase_12 AC 147 ms
43,840 KB
testcase_13 AC 128 ms
41,164 KB
testcase_14 AC 216 ms
47,052 KB
testcase_15 AC 140 ms
42,668 KB
testcase_16 AC 143 ms
43,920 KB
testcase_17 AC 212 ms
46,684 KB
testcase_18 AC 181 ms
46,752 KB
testcase_19 AC 162 ms
44,288 KB
testcase_20 AC 193 ms
45,612 KB
testcase_21 AC 177 ms
45,276 KB
testcase_22 AC 132 ms
41,876 KB
testcase_23 AC 138 ms
42,196 KB
testcase_24 AC 129 ms
41,588 KB
testcase_25 AC 162 ms
44,272 KB
testcase_26 AC 138 ms
42,932 KB
testcase_27 AC 184 ms
47,024 KB
testcase_28 AC 139 ms
43,848 KB
testcase_29 AC 211 ms
48,448 KB
testcase_30 AC 241 ms
49,888 KB
testcase_31 AC 193 ms
45,880 KB
testcase_32 AC 146 ms
43,712 KB
testcase_33 AC 174 ms
45,264 KB
testcase_34 AC 164 ms
44,976 KB
testcase_35 AC 231 ms
48,640 KB
testcase_36 AC 51 ms
37,076 KB
testcase_37 AC 50 ms
36,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[][] dp = new long[n][2];
        dp[0][0] = sc.nextInt();
        dp[0][1] = sc.nextInt();
        for (int i = 1; i < n; i++) {
            int p = sc.nextInt();
            int a = sc.nextInt();
            dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] + p) + p;
            dp[i][1] = Math.max(dp[i - 1][0], dp[i - 1][1] + a) + a;
        }
        System.out.println(dp[n - 1][0]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0