結果

問題 No.1007 コイン集め
ユーザー Mishan5055Mishan5055
提出日時 2020-03-09 01:33:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 925 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 48,932 KB
最終ジャッジ日時 2024-04-25 09:48:56
合計ジャッジ時間 9,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,064 KB
testcase_01 AC 131 ms
40,968 KB
testcase_02 AC 134 ms
41,328 KB
testcase_03 AC 133 ms
41,044 KB
testcase_04 AC 134 ms
41,200 KB
testcase_05 AC 134 ms
41,268 KB
testcase_06 AC 136 ms
40,960 KB
testcase_07 AC 132 ms
41,072 KB
testcase_08 AC 134 ms
41,272 KB
testcase_09 WA -
testcase_10 AC 135 ms
41,064 KB
testcase_11 WA -
testcase_12 AC 692 ms
47,792 KB
testcase_13 AC 730 ms
48,232 KB
testcase_14 AC 665 ms
48,204 KB
testcase_15 AC 252 ms
46,236 KB
testcase_16 AC 259 ms
46,140 KB
testcase_17 AC 258 ms
46,688 KB
testcase_18 AC 667 ms
48,360 KB
testcase_19 AC 132 ms
41,252 KB
testcase_20 WA -
testcase_21 AC 449 ms
46,956 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 ans=0;
        
        for(int i=0;i<N;i++){
            long tmp=sc.nextLong();
            if(i<K-1){
                if(tmp<=1){
                    ans=tmp;
                }else{
                    ans+=tmp;
                }
            }else if(i==K-1){
                if(tmp==0){
                    System.out.println(0);
                    return;
                }else{
                    ans+=tmp;
                }
            }else{
                if(tmp<=1){
                    ans+=tmp;
                    System.out.println(ans);
                    return;
                }else{
                    ans+=tmp;
                }
            }
        }
        
        System.out.println(ans);
    }
}
0