結果

問題 No.1007 コイン集め
ユーザー Mishan5055Mishan5055
提出日時 2020-03-09 01:47:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,432 bytes
コンパイル時間 2,731 ms
コンパイル使用メモリ 76,568 KB
実行使用メモリ 49,336 KB
最終ジャッジ日時 2024-04-25 09:49:19
合計ジャッジ時間 12,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 121 ms
39,940 KB
testcase_02 WA -
testcase_03 AC 127 ms
41,176 KB
testcase_04 WA -
testcase_05 AC 141 ms
41,528 KB
testcase_06 AC 125 ms
40,384 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 707 ms
48,684 KB
testcase_13 AC 697 ms
48,736 KB
testcase_14 AC 692 ms
48,648 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 670 ms
48,980 KB
testcase_19 AC 679 ms
48,988 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int N=sc.nextInt();
        int K=sc.nextInt();
        long[] A=new long[N];
        
        long ans=0;
        
        for(int i=0;i<N;i++){
            A[i]=sc.nextLong();
        }
        
        if(A[K-1]==0L){
            System.out.println(0);
        }else if(A[K-1]==1L){
            for(int i=0;i<K-1;i++){
                if(A[i]<=1){
                    ans=A[i];
                }else{
                    ans+=A[i];
                }
            }
            long ANS=ans;
            ans=0;
            for(int i=K;i<N;i++){
                if(A[i]<=1){
                    ans+=A[i];
                    break;
                }else{
                    ans+=A[i];
                }
            }
            if(ANS>ans){
                System.out.println(ANS);
            }else{
                System.out.println(ans);
            }
        }else{
            for(int i=0;i<N;i++){
                boolean through=false;
                if(A[i]<=1&&!through){
                    ans=A[i];
                }else if(A[i]<=1&&through){
                    ans+=A[i];
                    System.out.println(ans);
                    return;
                }else{
                    ans+=A[i];
                }
            }
            System.out.println(ans);
        }
    }
}
0