結果

問題 No.777 再帰的ケーキ
ユーザー t4kahachit4kahachi
提出日時 2019-01-05 21:11:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,680 bytes
コンパイル時間 2,827 ms
コンパイル使用メモリ 77,956 KB
実行使用メモリ 79,540 KB
最終ジャッジ日時 2024-05-03 03:02:46
合計ジャッジ時間 11,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
45,500 KB
testcase_01 AC 106 ms
40,176 KB
testcase_02 AC 109 ms
40,020 KB
testcase_03 AC 91 ms
40,648 KB
testcase_04 AC 100 ms
39,816 KB
testcase_05 AC 107 ms
40,124 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 111 ms
39,808 KB
testcase_09 AC 106 ms
40,780 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 106 ms
40,056 KB
testcase_13 AC 108 ms
40,620 KB
testcase_14 WA -
testcase_15 AC 105 ms
41,292 KB
testcase_16 AC 96 ms
41,392 KB
testcase_17 AC 111 ms
40,068 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 191 ms
43,392 KB
testcase_24 AC 184 ms
43,496 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 205 ms
43,912 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Java_100_nock {
    public static void main(String[] args) {
       
        Scanner sc = new Scanner(System.in);
        String line;
        int N;
        line = sc.nextLine();
        N = Integer.parseInt(line);
        int flg = 0;
        String s[];
        if((1<=N&&N<=200000)!=true)flg=1;
        if(flg!=1){
         int data[][] = new int[N][3];
         line = null;
         
         for(int i=0;i<N;i++){
             line = sc.nextLine();
             s = line.split(" ");
             data[i][0] = Integer.parseInt(s[0]);
             data[i][1] = Integer.parseInt(s[1]);
             data[i][2] = Integer.parseInt(s[2]);
         }
         
         int max_a = 0;
         int max_b = 0;
         int cnt = 1;
         int box[] = new int[N];
         int kcal = 0;
         for(int i=0;i<N;i++){
             max_a=data[i][0];
             max_b=data[i][1];
             kcal=data[i][2];
             for(int x=0;x<N;x++){
                if(i==x)continue;
                 
                if((max_a<data[x][0])&&(max_b<data[x][1])){
                    max_a=data[x][0];
                    max_b=data[x][1];
                    kcal += data[x][2];
                }
                 
                 cnt++;
                 
             }

             box[i] = kcal;

             max_a = 0;
             max_b = 0;
             kcal = 0;
             cnt = 1;

         }
         int max = 0;
         cnt = 0;
         for(int i=0;i<N;i++){
            if(max==0)max = box[i];
            if(max<box[i])max = box[i];
         }
         
         System.out.println(max);
         

        }
        
    }
    
}
0