結果
問題 | No.488 四角関係 |
ユーザー | fjafjafja |
提出日時 | 2017-09-01 16:31:39 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,152 bytes |
コンパイル時間 | 5,468 ms |
コンパイル使用メモリ | 77,260 KB |
実行使用メモリ | 45,096 KB |
最終ジャッジ日時 | 2024-11-06 17:23:23 |
合計ジャッジ時間 | 10,978 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 163 ms
41,844 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 132 ms
41,420 KB |
testcase_10 | AC | 157 ms
41,808 KB |
testcase_11 | AC | 144 ms
41,292 KB |
testcase_12 | AC | 163 ms
41,792 KB |
testcase_13 | AC | 148 ms
41,524 KB |
testcase_14 | AC | 135 ms
41,344 KB |
testcase_15 | AC | 122 ms
40,340 KB |
testcase_16 | AC | 132 ms
41,448 KB |
testcase_17 | AC | 128 ms
41,456 KB |
testcase_18 | AC | 133 ms
41,324 KB |
testcase_19 | AC | 133 ms
41,308 KB |
testcase_20 | AC | 116 ms
39,760 KB |
testcase_21 | AC | 130 ms
41,164 KB |
testcase_22 | AC | 132 ms
41,552 KB |
testcase_23 | AC | 128 ms
41,220 KB |
testcase_24 | AC | 133 ms
41,312 KB |
ソースコード
package yukicoder; import java.util.Scanner; public class N488 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); int M=sc.nextInt(); int abuf=0; int bbuf=0; int cnt=0; int end=0; long[] a=new long[N],b=new long[M]; for(int i=0;i<M;i++) { abuf=sc.nextInt(); bbuf=sc.nextInt(); a[(abuf<bbuf)?abuf:bbuf]+=(int)Math.pow(2,(abuf>bbuf)?abuf:bbuf); } for(int i=0;i<N-3;i++) { for(int j=i+1;j<N-2;j++) { for(int k=j+1;k<N-1;k++) { for(int l=k+1;l<N;l++) { end=0; if(!check(a[i],j)&&check(a[i],k)&&check(a[i],l)&&check(a[j],k)&&check(a[j],l)&&!check(a[k],l)) { end++; cnt++; } if(end!=1&&check(a[i],j)&&!check(a[i],k)&&check(a[i],l)&&check(a[j],k)&&check(a[k],l)&&!check(a[j],l)) { end++; cnt++; } if(end!=1&&check(a[i],j)&&check(a[i],k)&&!check(a[i],l)&&check(a[j],l)&&check(a[k],l)&&!check(a[j],k)) { cnt++; } } } } } System.out.println(cnt); } static boolean check(long a,int index) { return ((a&(int)Math.pow(2, index))!=0);} }