結果

問題 No.1007 コイン集め
ユーザー Mishan5055Mishan5055
提出日時 2020-03-09 01:31:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 48,232 KB
最終ジャッジ日時 2024-11-07 20:23:36
合計ジャッジ時間 10,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,936 KB
testcase_01 AC 125 ms
41,408 KB
testcase_02 AC 130 ms
41,224 KB
testcase_03 AC 126 ms
41,196 KB
testcase_04 AC 120 ms
40,696 KB
testcase_05 AC 128 ms
41,128 KB
testcase_06 AC 129 ms
41,216 KB
testcase_07 AC 128 ms
41,104 KB
testcase_08 AC 127 ms
41,204 KB
testcase_09 WA -
testcase_10 AC 115 ms
40,448 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 247 ms
46,408 KB
testcase_16 AC 250 ms
46,700 KB
testcase_17 AC 254 ms
46,428 KB
testcase_18 WA -
testcase_19 AC 133 ms
41,088 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