結果

問題 No.59 鉄道の旅
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-10 05:38:08
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 699 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 66,940 KB
最終ジャッジ日時 2024-06-07 03:14:13
合計ジャッジ時間 9,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
44,880 KB
testcase_01 AC 120 ms
44,804 KB
testcase_02 AC 112 ms
44,004 KB
testcase_03 AC 127 ms
44,940 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int K = sc.nextInt();
        int [] c = new int [1000001];
        for(int i=0; i<N; i++){
            int W = sc.nextInt();
            if(W>0){
                if(c[W]<K){
                    for(int j=W; j>=0; j--){
                        c[j]++;
                    }
                }
            }else{
                if(c[1-W]-c[-W]<0){
                    for(int j=-W; j>=0; j--){
                        c[j]--;
                    }
                }
            }
        }
        System.out.println(c[0]);
    }
}
0