結果

問題 No.759 悪くない忘年会にしような!
ユーザー t4kahachit4kahachi
提出日時 2019-01-06 02:11:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,112 bytes
コンパイル時間 5,221 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-11-23 23:40:56
合計ジャッジ時間 16,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,288 KB
testcase_01 AC 127 ms
41,008 KB
testcase_02 AC 125 ms
41,020 KB
testcase_03 AC 124 ms
41,308 KB
testcase_04 AC 132 ms
41,376 KB
testcase_05 AC 127 ms
41,028 KB
testcase_06 AC 127 ms
41,264 KB
testcase_07 AC 128 ms
41,036 KB
testcase_08 AC 113 ms
40,220 KB
testcase_09 AC 129 ms
41,052 KB
testcase_10 AC 126 ms
41,200 KB
testcase_11 AC 118 ms
40,292 KB
testcase_12 AC 129 ms
41,244 KB
testcase_13 AC 128 ms
41,076 KB
testcase_14 AC 127 ms
41,224 KB
testcase_15 AC 131 ms
41,136 KB
testcase_16 AC 127 ms
40,936 KB
testcase_17 AC 127 ms
40,900 KB
testcase_18 AC 128 ms
41,024 KB
testcase_19 AC 129 ms
41,284 KB
testcase_20 AC 129 ms
41,304 KB
testcase_21 AC 128 ms
41,208 KB
testcase_22 AC 127 ms
41,164 KB
testcase_23 AC 129 ms
41,240 KB
testcase_24 AC 130 ms
41,088 KB
testcase_25 AC 129 ms
41,136 KB
testcase_26 AC 114 ms
40,372 KB
testcase_27 AC 129 ms
41,180 KB
testcase_28 AC 132 ms
41,212 KB
testcase_29 AC 129 ms
41,156 KB
testcase_30 AC 129 ms
41,196 KB
testcase_31 AC 127 ms
40,888 KB
testcase_32 AC 124 ms
41,136 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Java_100_nock {
    public static void main(String[] args) {

        int N = 0;
        Scanner sc = new Scanner(System.in);
        String line;
        line = sc.nextLine();
        String s[];
        int flg = 0;
        if(line.matches("^[0-9]$"))N = Integer.parseInt(line);
        if(1<=N&&N<=Math.pow(10,5)){
            int data[][] = new int[N][3];
            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]);
                if(((0<=data[i][0]&&0<=data[i][0]&&0<=data[i][0])&&(data[i][0]<=Math.pow(10,4)&&data[i][1]<=Math.pow(10,4)&&data[i][2]<=Math.pow(10,4)))!=true)flg=1;
                
            }
            
            for(int i=0;i<N;i++){
                if(flg!=1)break;
                for(int x=0;x<N;x++){
                    if((data[i][0]==data[x][0])&&(data[i][1]==data[x][1])&&(data[i][1]==data[x][1])){
                        flg=1;
                        break;
                    }
                }
            }
            
            if(flg!=1){
                int f = 0;
                for(int i=0;i<N;i++){
                    for(int x=0;x<N;x++){
                        if(i==x)continue;
                        if(data[i][0]<data[x][0]&&data[i][1]<=data[x][1]&&data[i][2]<=data[x][2]){
                            f = 1;
                            break;
                        }else if(data[i][0]<=data[x][0]&&data[i][1]<data[x][1]&&data[i][2]<=data[x][2]){
                            f = 1;
                            break;
                        }else if(data[i][0]<=data[x][0]&&data[i][1]<=data[x][1]&&data[i][2]<data[x][2]){
                            f = 1;
                            break;
                        }
                    }
                    if(f!=1)System.out.println(i+1);
                    f = 0;
                }
                
            }
            
        }
    }
    
}
0