結果

問題 No.1007 コイン集め
ユーザー Mishan5055Mishan5055
提出日時 2020-03-09 01:33:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 925 bytes
コンパイル時間 3,216 ms
コンパイル使用メモリ 73,600 KB
実行使用メモリ 60,140 KB
最終ジャッジ日時 2024-11-07 20:23:53
合計ジャッジ時間 10,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,480 KB
testcase_01 AC 140 ms
41,196 KB
testcase_02 AC 136 ms
41,288 KB
testcase_03 AC 132 ms
41,124 KB
testcase_04 AC 132 ms
41,012 KB
testcase_05 AC 135 ms
41,364 KB
testcase_06 AC 132 ms
41,436 KB
testcase_07 AC 117 ms
39,936 KB
testcase_08 AC 135 ms
41,468 KB
testcase_09 WA -
testcase_10 AC 134 ms
41,140 KB
testcase_11 WA -
testcase_12 AC 662 ms
48,328 KB
testcase_13 AC 663 ms
47,812 KB
testcase_14 AC 631 ms
48,704 KB
testcase_15 AC 258 ms
46,360 KB
testcase_16 AC 249 ms
46,352 KB
testcase_17 AC 269 ms
46,024 KB
testcase_18 AC 696 ms
48,056 KB
testcase_19 AC 131 ms
40,888 KB
testcase_20 WA -
testcase_21 AC 527 ms
48,148 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