結果
| 問題 | No.2402 Dirty Stairs and Shoes |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-04 21:55:07 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 622 bytes |
| 記録 | |
| コンパイル時間 | 242 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 90,112 KB |
| 最終ジャッジ日時 | 2026-05-27 06:28:40 |
| 合計ジャッジ時間 | 5,491 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | TLE * 1 -- * 31 |
ソースコード
import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
n,k= map(int,input().split())
m1 = int(input())
lm1 = list(map(int,input().split()))
m2= int(input())
lm2 = list(map(int,input().split()))
dp=[False]*(n+1)
dp[0]=True
for i in range(1,n+1):
dp[i] = dp[i-1]
if i-k >= 0:
dp[i] = dp[i-k]
if lm1.count(i) == 1:
dp[i] = False
if lm2.count(i) == 1:
dp[i] = True
if dp[n]:
print('Yes')
else:
print('No')