結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
54,128 KB
testcase_01 AC 111 ms
54,316 KB
testcase_02 AC 110 ms
54,200 KB
testcase_03 AC 105 ms
53,036 KB
testcase_04 AC 118 ms
54,184 KB
testcase_05 AC 112 ms
53,956 KB
testcase_06 AC 99 ms
53,044 KB
testcase_07 AC 113 ms
54,244 KB
testcase_08 AC 108 ms
53,536 KB
testcase_09 AC 100 ms
52,576 KB
testcase_10 AC 103 ms
53,108 KB
testcase_11 AC 111 ms
53,980 KB
testcase_12 AC 101 ms
52,992 KB
testcase_13 AC 104 ms
53,348 KB
testcase_14 AC 111 ms
54,000 KB
testcase_15 AC 98 ms
52,720 KB
testcase_16 AC 112 ms
54,064 KB
testcase_17 AC 108 ms
54,020 KB
testcase_18 AC 111 ms
54,280 KB
testcase_19 AC 120 ms
53,988 KB
testcase_20 AC 123 ms
53,956 KB
testcase_21 AC 106 ms
53,692 KB
testcase_22 AC 113 ms
54,232 KB
testcase_23 AC 111 ms
53,720 KB
testcase_24 AC 114 ms
54,028 KB
testcase_25 AC 98 ms
53,024 KB
testcase_26 AC 98 ms
52,788 KB
testcase_27 AC 110 ms
54,236 KB
testcase_28 AC 100 ms
52,996 KB
testcase_29 AC 110 ms
54,104 KB
testcase_30 AC 111 ms
54,132 KB
testcase_31 AC 101 ms
53,200 KB
testcase_32 AC 115 ms
53,840 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