結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー 👑 KA37RIKA37RI
提出日時 2023-08-04 21:33:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,388 KB
最終ジャッジ日時 2024-10-14 19:31:58
合計ジャッジ時間 3,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 97 ms
20,904 KB
testcase_04 AC 112 ms
20,868 KB
testcase_05 AC 53 ms
14,828 KB
testcase_06 AC 101 ms
29,316 KB
testcase_07 AC 150 ms
21,996 KB
testcase_08 AC 83 ms
20,384 KB
testcase_09 AC 37 ms
11,648 KB
testcase_10 AC 68 ms
14,872 KB
testcase_11 AC 192 ms
23,732 KB
testcase_12 AC 156 ms
30,388 KB
testcase_13 AC 56 ms
27,760 KB
testcase_14 AC 52 ms
27,608 KB
testcase_15 AC 48 ms
19,420 KB
testcase_16 AC 38 ms
14,500 KB
testcase_17 AC 45 ms
19,200 KB
testcase_18 AC 56 ms
27,920 KB
testcase_19 AC 47 ms
19,420 KB
testcase_20 AC 35 ms
13,824 KB
testcase_21 AC 38 ms
14,580 KB
testcase_22 AC 47 ms
19,116 KB
testcase_23 AC 55 ms
27,924 KB
testcase_24 AC 38 ms
14,884 KB
testcase_25 AC 43 ms
19,200 KB
testcase_26 AC 32 ms
11,776 KB
testcase_27 AC 43 ms
19,252 KB
testcase_28 AC 56 ms
27,816 KB
testcase_29 AC 44 ms
19,096 KB
testcase_30 AC 38 ms
14,872 KB
testcase_31 AC 57 ms
27,752 KB
testcase_32 AC 39 ms
14,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N = int(input())
M1 = int(input())
A = [int(x) for x in input().split()]
M2 = int(input())
B = [int(x) for x in input().split()]
clean = set(range(N))
for i in itertools.accumulate(A):
  clean.discard(i)
for i in itertools.accumulate(B):
  clean.discard(N - i)
print(len(clean))
0