結果
| 問題 | No.2401 Dirty Shoes and Stairs |
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2023-08-04 21:44:22 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 89 ms / 2,000 ms |
| コード長 | 313 bytes |
| 記録 | |
| コンパイル時間 | 151 ms |
| コンパイル使用メモリ | 85,632 KB |
| 実行使用メモリ | 140,288 KB |
| 最終ジャッジ日時 | 2026-05-02 05:17:46 |
| 合計ジャッジ時間 | 2,860 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
from collections import defaultdict
N=int(input())
M1=int(input())
A=list(map(int,input().split()))
M2=int(input())
B=list(map(int,input().split()))
dic=defaultdict(int)
count=0
for i in range(M1):
count+=A[i]
dic[count]+=1
count=N
for i in range(M2):
count-=B[i]
dic[count]+=1
print(N+1-len(dic))
nikoro256