結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー tentententen
提出日時 2023-08-07 17:51:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,861 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 92,916 KB
実行使用メモリ 56,364 KB
最終ジャッジ日時 2024-11-07 22:44:57
合計ジャッジ時間 7,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,684 KB
testcase_01 AC 53 ms
37,032 KB
testcase_02 AC 53 ms
36,632 KB
testcase_03 AC 211 ms
48,376 KB
testcase_04 AC 214 ms
48,636 KB
testcase_05 AC 153 ms
44,460 KB
testcase_06 AC 206 ms
48,488 KB
testcase_07 AC 267 ms
52,852 KB
testcase_08 AC 188 ms
46,636 KB
testcase_09 AC 116 ms
40,112 KB
testcase_10 AC 170 ms
44,864 KB
testcase_11 AC 355 ms
56,364 KB
testcase_12 AC 297 ms
54,616 KB
testcase_13 AC 70 ms
37,872 KB
testcase_14 AC 58 ms
36,956 KB
testcase_15 AC 56 ms
36,980 KB
testcase_16 AC 78 ms
38,056 KB
testcase_17 AC 62 ms
36,988 KB
testcase_18 AC 60 ms
37,412 KB
testcase_19 AC 58 ms
37,208 KB
testcase_20 AC 60 ms
36,732 KB
testcase_21 AC 58 ms
37,256 KB
testcase_22 AC 66 ms
37,856 KB
testcase_23 AC 62 ms
37,376 KB
testcase_24 AC 62 ms
36,856 KB
testcase_25 AC 62 ms
37,184 KB
testcase_26 AC 65 ms
37,804 KB
testcase_27 AC 58 ms
36,976 KB
testcase_28 AC 55 ms
36,768 KB
testcase_29 AC 60 ms
37,160 KB
testcase_30 AC 58 ms
37,196 KB
testcase_31 AC 60 ms
37,112 KB
testcase_32 AC 57 ms
36,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m1 = sc.nextInt();
        int current = 0;
        HashSet<Integer> used = new HashSet<>();
        while (m1-- > 0) {
            current += sc.nextInt();
            used.add(current);
        }
        current = n;
        int m2 = sc.nextInt();
        while (m2-- > 0) {
            current -= sc.nextInt();
            used.add(current);
        }
        System.out.println(n + 1 - used.size());
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0