結果

問題 No.1007 コイン集め
ユーザー Mishan5055Mishan5055
提出日時 2020-03-09 01:31:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 3,761 ms
コンパイル使用メモリ 83,328 KB
実行使用メモリ 48,204 KB
最終ジャッジ日時 2024-04-25 09:48:37
合計ジャッジ時間 11,772 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,492 KB
testcase_01 AC 120 ms
40,032 KB
testcase_02 AC 133 ms
41,252 KB
testcase_03 AC 136 ms
41,456 KB
testcase_04 AC 135 ms
41,200 KB
testcase_05 AC 135 ms
41,440 KB
testcase_06 AC 134 ms
41,240 KB
testcase_07 AC 135 ms
41,312 KB
testcase_08 AC 135 ms
41,628 KB
testcase_09 WA -
testcase_10 AC 134 ms
41,432 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 257 ms
46,004 KB
testcase_16 AC 257 ms
46,700 KB
testcase_17 AC 264 ms
46,452 KB
testcase_18 WA -
testcase_19 AC 137 ms
41,432 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();
        
        int ans=0;
        
        for(int i=0;i<N;i++){
            int tmp=sc.nextInt();
            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