結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー tentententen
提出日時 2024-07-02 13:08:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,554 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 80,376 KB
実行使用メモリ 56,844 KB
最終ジャッジ日時 2024-07-02 13:09:00
合計ジャッジ時間 7,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
50,988 KB
testcase_01 AC 63 ms
50,540 KB
testcase_02 AC 64 ms
50,760 KB
testcase_03 AC 192 ms
56,304 KB
testcase_04 AC 171 ms
56,076 KB
testcase_05 AC 142 ms
55,452 KB
testcase_06 AC 210 ms
56,208 KB
testcase_07 AC 196 ms
56,320 KB
testcase_08 AC 162 ms
56,132 KB
testcase_09 AC 121 ms
52,396 KB
testcase_10 AC 153 ms
56,680 KB
testcase_11 AC 264 ms
56,844 KB
testcase_12 AC 261 ms
56,440 KB
testcase_13 AC 91 ms
51,932 KB
testcase_14 AC 84 ms
51,820 KB
testcase_15 AC 80 ms
52,016 KB
testcase_16 AC 86 ms
51,944 KB
testcase_17 AC 86 ms
51,836 KB
testcase_18 AC 83 ms
51,772 KB
testcase_19 AC 83 ms
51,708 KB
testcase_20 AC 80 ms
51,676 KB
testcase_21 AC 77 ms
51,164 KB
testcase_22 AC 89 ms
52,052 KB
testcase_23 AC 86 ms
51,840 KB
testcase_24 AC 80 ms
51,544 KB
testcase_25 AC 77 ms
51,512 KB
testcase_26 AC 86 ms
51,324 KB
testcase_27 AC 72 ms
50,976 KB
testcase_28 AC 80 ms
51,460 KB
testcase_29 AC 81 ms
51,792 KB
testcase_30 AC 72 ms
51,436 KB
testcase_31 AC 82 ms
51,736 KB
testcase_32 AC 73 ms
50,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        boolean[] isDirty = new boolean[n + 1];
        int m1 = sc.nextInt();
        int current = 0;
        while (m1-- > 0) {
            current += sc.nextInt();
            isDirty[current] = true;
        }
        int m2 = sc.nextInt();
        while (m2-- > 0) {
            current -= sc.nextInt();
            isDirty[current] = true;
        }
        System.out.println(IntStream.rangeClosed(0, n).filter(i -> !isDirty[i]).count());
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0