結果

問題 No.45 回転寿司
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-16 22:37:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 504 ms / 5,000 ms
コード長 989 bytes
コンパイル時間 2,734 ms
コンパイル使用メモリ 76,832 KB
実行使用メモリ 171,472 KB
最終ジャッジ日時 2024-06-08 09:33:15
合計ジャッジ時間 11,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
59,256 KB
testcase_01 AC 299 ms
77,412 KB
testcase_02 AC 398 ms
117,296 KB
testcase_03 AC 445 ms
122,432 KB
testcase_04 AC 312 ms
80,948 KB
testcase_05 AC 146 ms
42,748 KB
testcase_06 AC 274 ms
75,868 KB
testcase_07 AC 393 ms
117,076 KB
testcase_08 AC 176 ms
52,408 KB
testcase_09 AC 413 ms
117,612 KB
testcase_10 AC 248 ms
66,776 KB
testcase_11 AC 158 ms
47,724 KB
testcase_12 AC 401 ms
117,268 KB
testcase_13 AC 145 ms
42,568 KB
testcase_14 AC 135 ms
41,908 KB
testcase_15 AC 235 ms
67,008 KB
testcase_16 AC 179 ms
51,992 KB
testcase_17 AC 230 ms
59,064 KB
testcase_18 AC 196 ms
56,264 KB
testcase_19 AC 357 ms
98,772 KB
testcase_20 AC 139 ms
41,692 KB
testcase_21 AC 140 ms
42,456 KB
testcase_22 AC 119 ms
40,984 KB
testcase_23 AC 119 ms
41,156 KB
testcase_24 AC 116 ms
41,116 KB
testcase_25 AC 107 ms
39,940 KB
testcase_26 AC 231 ms
67,064 KB
testcase_27 AC 334 ms
99,168 KB
testcase_28 AC 289 ms
75,516 KB
testcase_29 AC 334 ms
99,320 KB
testcase_30 AC 328 ms
99,816 KB
testcase_31 AC 121 ms
41,056 KB
testcase_32 AC 107 ms
39,872 KB
testcase_33 AC 504 ms
171,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[] v = new int[n];
        int total=0;
        for(int i=0; i<n; i++){
            v[i]=koko.nextInt();
            total=total+v[i];
        }
        boolean[][][] sushi = new boolean[n+1][2][total+1];
        sushi[0][0][0]=true;
        for(int i=0; i<n; i++){
            for(int j=0; j<total+1; j++){
                if(sushi[i][0][j]){
                    sushi[i+1][0][j]=true;
                    sushi[i+1][1][j+v[i]]=true;
                }else if(sushi[i][1][j]){
                    sushi[i+1][0][j]=true;
                }
            }
        }
loop1:  for(int i=total; i>0; i--){
            for(int j=0; j<2; j++){
                if(sushi[n][j][i]){
                    System.out.println(i);
                    break loop1;
                }
            }
        }
    }
}
0