結果
問題 | No.1007 コイン集め |
ユーザー | 37zigen |
提出日時 | 2020-03-06 23:09:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 871 bytes |
コンパイル時間 | 2,835 ms |
コンパイル使用メモリ | 78,280 KB |
実行使用メモリ | 49,596 KB |
最終ジャッジ日時 | 2024-10-14 09:39:19 |
合計ジャッジ時間 | 11,869 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,128 KB |
testcase_01 | AC | 133 ms
41,288 KB |
testcase_02 | AC | 136 ms
41,324 KB |
testcase_03 | AC | 135 ms
41,124 KB |
testcase_04 | AC | 135 ms
41,052 KB |
testcase_05 | AC | 134 ms
41,076 KB |
testcase_06 | AC | 133 ms
41,416 KB |
testcase_07 | AC | 135 ms
41,232 KB |
testcase_08 | WA | - |
testcase_09 | AC | 134 ms
41,304 KB |
testcase_10 | AC | 134 ms
41,212 KB |
testcase_11 | AC | 136 ms
41,276 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 668 ms
49,088 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Scanner; class Main { public static void main(String[] args) throws Exception { new Main().run(); } void run() { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); int K=sc.nextInt(); long[] A=new long[N]; for(int i=0;i<N;++i) A[i]=sc.nextLong(); --K; if(A[K]==0){ System.out.println(0); return; } int r=K; int l=K; while(r+1<A.length&&A[r+1]>=1&&(r==K||A[r]==2))++r; while(l-1>=0&&A[l-1]>=1&&(l==K||A[l]==2))--l; long rc=0,lc=0; for(int i=K+1;i<=r;++i)rc+=A[i]; for(int i=K-1;i>=l;--i)lc+=A[i]; if(A[K]<=2){ System.out.println(A[K]+Math.max(rc,lc)); }else{ System.out.println(A[K]+rc+lc); } } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }