結果

問題 No.1007 コイン集め
ユーザー Mishan5055Mishan5055
提出日時 2020-03-09 01:56:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 686 ms / 1,500 ms
コード長 1,559 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 49,452 KB
最終ジャッジ日時 2024-11-07 20:25:04
合計ジャッジ時間 10,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,176 KB
testcase_01 AC 128 ms
41,080 KB
testcase_02 AC 115 ms
40,108 KB
testcase_03 AC 131 ms
41,216 KB
testcase_04 AC 129 ms
41,248 KB
testcase_05 AC 133 ms
41,196 KB
testcase_06 AC 128 ms
41,500 KB
testcase_07 AC 131 ms
41,200 KB
testcase_08 AC 117 ms
40,032 KB
testcase_09 AC 131 ms
41,204 KB
testcase_10 AC 130 ms
41,272 KB
testcase_11 AC 130 ms
41,120 KB
testcase_12 AC 664 ms
48,956 KB
testcase_13 AC 686 ms
48,960 KB
testcase_14 AC 658 ms
48,748 KB
testcase_15 AC 595 ms
48,448 KB
testcase_16 AC 551 ms
48,852 KB
testcase_17 AC 576 ms
48,756 KB
testcase_18 AC 657 ms
49,308 KB
testcase_19 AC 588 ms
49,152 KB
testcase_20 AC 659 ms
48,728 KB
testcase_21 AC 655 ms
49,452 KB
権限があれば一括ダウンロードができます

ソースコード

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]==0){
            System.out.println(0);
        }else if(A[K-1]==1){
            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];
                }
            }
            ANS++;
            ans++;
            
            if(ANS>ans){
                System.out.println(ANS);
            }else{
                System.out.println(ans);
            }
        }else{
            boolean through=false;
            for(int i=0;i<N;i++){
                if(i==K-1){
                    through=true;
                }
                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