結果
問題 | No.2402 Dirty Stairs and Shoes |
ユーザー |
|
提出日時 | 2023-08-04 21:55:07 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 145,444 KB |
最終ジャッジ日時 | 2024-12-20 02:39:59 |
合計ジャッジ時間 | 23,825 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 6 TLE * 6 |
ソースコード
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')