結果

問題 No.59 鉄道の旅
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-10 05:38:08
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 699 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 77,892 KB
実行使用メモリ 94,844 KB
最終ジャッジ日時 2024-12-25 00:45:05
合計ジャッジ時間 36,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
50,708 KB
testcase_01 AC 130 ms
49,040 KB
testcase_02 AC 154 ms
50,532 KB
testcase_03 AC 160 ms
94,844 KB
testcase_04 TLE -
testcase_05 AC 206 ms
45,292 KB
testcase_06 AC 246 ms
45,308 KB
testcase_07 AC 186 ms
45,264 KB
testcase_08 TLE -
testcase_09 AC 3,904 ms
61,704 KB
testcase_10 AC 2,243 ms
61,768 KB
testcase_11 AC 270 ms
49,848 KB
testcase_12 AC 623 ms
51,784 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

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