結果

問題 No.777 再帰的ケーキ
ユーザー t4kahachit4kahachi
提出日時 2019-01-05 21:11:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,680 bytes
コンパイル時間 6,177 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 127,636 KB
最終ジャッジ日時 2024-11-23 23:34:27
合計ジャッジ時間 39,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
46,244 KB
testcase_01 AC 130 ms
103,464 KB
testcase_02 AC 129 ms
46,492 KB
testcase_03 AC 128 ms
103,140 KB
testcase_04 AC 133 ms
46,648 KB
testcase_05 AC 130 ms
103,732 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 134 ms
46,592 KB
testcase_09 AC 128 ms
103,224 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 130 ms
46,388 KB
testcase_13 AC 119 ms
102,180 KB
testcase_14 WA -
testcase_15 AC 133 ms
103,492 KB
testcase_16 AC 129 ms
46,452 KB
testcase_17 AC 128 ms
41,224 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 233 ms
43,080 KB
testcase_24 AC 231 ms
43,320 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 277 ms
43,904 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

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