結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー irohasu19_irohasu19_
提出日時 2023-08-04 22:26:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,960 KB
最終ジャッジ日時 2024-10-14 20:25:14
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 95 ms
24,620 KB
testcase_04 AC 120 ms
26,064 KB
testcase_05 AC 55 ms
16,112 KB
testcase_06 AC 97 ms
32,928 KB
testcase_07 AC 159 ms
29,908 KB
testcase_08 AC 88 ms
23,296 KB
testcase_09 AC 39 ms
12,160 KB
testcase_10 AC 72 ms
17,456 KB
testcase_11 AC 192 ms
34,276 KB
testcase_12 AC 157 ms
38,960 KB
testcase_13 AC 57 ms
28,068 KB
testcase_14 AC 55 ms
27,836 KB
testcase_15 AC 49 ms
19,436 KB
testcase_16 AC 39 ms
14,532 KB
testcase_17 AC 47 ms
19,380 KB
testcase_18 AC 57 ms
27,748 KB
testcase_19 AC 49 ms
19,580 KB
testcase_20 AC 36 ms
13,824 KB
testcase_21 AC 39 ms
14,644 KB
testcase_22 AC 47 ms
19,412 KB
testcase_23 AC 55 ms
27,756 KB
testcase_24 AC 39 ms
14,672 KB
testcase_25 AC 43 ms
19,296 KB
testcase_26 AC 33 ms
11,776 KB
testcase_27 AC 43 ms
19,280 KB
testcase_28 AC 56 ms
27,976 KB
testcase_29 AC 45 ms
19,276 KB
testcase_30 AC 39 ms
15,020 KB
testcase_31 AC 57 ms
27,932 KB
testcase_32 AC 39 ms
14,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
m_1 = int(input())
A = list(map(int, input().split()))
m_2 = int(input())
B = list(map(int, input().split()))

A_ = list(itertools.accumulate(A))
B_ = []

tmp = n
for x in B:
  tmp -= x
  B_.append(tmp)

# print(A_)
# print(B_)

  

  

num_set = set(range(n + 1))
for xx in A_:
  num_set.discard(xx)

for yy in B_:
  num_set.discard(yy)

print(len(num_set))

0