結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | fjafjafja |
提出日時 | 2017-09-21 17:22:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,083 bytes |
コンパイル時間 | 3,588 ms |
コンパイル使用メモリ | 77,916 KB |
実行使用メモリ | 49,104 KB |
最終ジャッジ日時 | 2024-11-08 19:27:59 |
合計ジャッジ時間 | 12,789 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
41,152 KB |
testcase_01 | AC | 135 ms
41,268 KB |
testcase_02 | AC | 132 ms
41,020 KB |
testcase_03 | WA | - |
testcase_04 | AC | 133 ms
41,180 KB |
testcase_05 | AC | 134 ms
41,076 KB |
testcase_06 | WA | - |
testcase_07 | AC | 719 ms
48,672 KB |
testcase_08 | WA | - |
testcase_09 | AC | 545 ms
48,236 KB |
testcase_10 | AC | 567 ms
48,116 KB |
testcase_11 | AC | 595 ms
48,420 KB |
testcase_12 | AC | 562 ms
48,068 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 132 ms
41,216 KB |
testcase_20 | WA | - |
ソースコード
package yukicoder; import java.util.Arrays; import java.util.Scanner; public class N507 { static int[] a,buf; static int k,n,m,ans; public static void main(String[] args) { Scanner sc = new Scanner(System.in); n=sc.nextInt(); m=sc.nextInt(); int min=0,max=n-2; a=new int[n-1]; k=sc.nextInt();//k a[0]-a[n-2] for(int i=0;i<n-1;i++) { a[i]=sc.nextInt(); } Arrays.sort(a); if(isok(min)){ans=min;} else if(!isok(max)){ans=-1;} else { ans=(int)Math.ceil((min+max)/2); while(max-min>1) { //System.out.println("min max"+min+" "+max); ans=(int)Math.ceil((min+max)/2); if(isok(ans)){max=ans;}//System.out.println("ind="+ans+" true");} else{min=ans;}//System.out.println("ind="+ans+" false");} } ans=a[max]; } System.out.println(ans); } static boolean isok(int ind)// { int me=k+a[ind]; int rank=1,buf=0; int end=0; for(int i=n-2;i>=0;i--) { if(ind==i){continue;} for(int j=buf;j<i;j++) { if(ind==j){continue;} buf=j; if(me<a[i]+a[j]){rank++;break;} } } return rank<=m; } }