結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー colognecologne
提出日時 2023-08-05 11:53:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 110,700 KB
最終ジャッジ日時 2024-10-15 08:57:25
合計ジャッジ時間 3,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,296 KB
testcase_01 AC 38 ms
52,556 KB
testcase_02 AC 38 ms
52,880 KB
testcase_03 AC 65 ms
84,356 KB
testcase_04 AC 64 ms
90,020 KB
testcase_05 AC 49 ms
67,360 KB
testcase_06 AC 61 ms
84,056 KB
testcase_07 AC 83 ms
108,244 KB
testcase_08 AC 57 ms
78,428 KB
testcase_09 AC 42 ms
61,720 KB
testcase_10 AC 52 ms
74,688 KB
testcase_11 AC 100 ms
110,700 KB
testcase_12 AC 89 ms
109,760 KB
testcase_13 AC 44 ms
60,612 KB
testcase_14 AC 40 ms
58,052 KB
testcase_15 AC 40 ms
60,048 KB
testcase_16 AC 42 ms
59,028 KB
testcase_17 AC 41 ms
59,712 KB
testcase_18 AC 41 ms
58,864 KB
testcase_19 AC 41 ms
60,328 KB
testcase_20 AC 42 ms
60,096 KB
testcase_21 AC 40 ms
57,656 KB
testcase_22 AC 42 ms
59,744 KB
testcase_23 AC 42 ms
59,692 KB
testcase_24 AC 42 ms
58,832 KB
testcase_25 AC 41 ms
60,860 KB
testcase_26 AC 39 ms
60,088 KB
testcase_27 AC 39 ms
58,996 KB
testcase_28 AC 40 ms
59,640 KB
testcase_29 AC 41 ms
58,544 KB
testcase_30 AC 39 ms
58,824 KB
testcase_31 AC 45 ms
61,260 KB
testcase_32 AC 40 ms
57,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate


def main():
    N = int(input())
    Z = [0]*(N+1)
    input()
    *A, = accumulate(map(int, input().split()))
    input()
    *B, = accumulate(map(int, input().split()))
    for a in A:
        Z[a] = 1
    for b in B:
        Z[N-b] = 1

    print(N+1-sum(Z))


if __name__ == '__main__':
    main()
0