結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー hiryuNhiryuN
提出日時 2023-08-04 21:49:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 96,292 KB
最終ジャッジ日時 2024-12-20 02:38:46
合計ジャッジ時間 2,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,000 KB
testcase_01 AC 38 ms
52,140 KB
testcase_02 WA -
testcase_03 AC 62 ms
82,148 KB
testcase_04 AC 44 ms
61,044 KB
testcase_05 AC 76 ms
96,292 KB
testcase_06 AC 55 ms
71,624 KB
testcase_07 AC 47 ms
64,884 KB
testcase_08 AC 47 ms
64,088 KB
testcase_09 AC 51 ms
69,364 KB
testcase_10 AC 59 ms
77,316 KB
testcase_11 AC 54 ms
73,620 KB
testcase_12 AC 48 ms
63,432 KB
testcase_13 AC 45 ms
60,836 KB
testcase_14 AC 47 ms
62,812 KB
testcase_15 AC 41 ms
55,988 KB
testcase_16 AC 42 ms
59,552 KB
testcase_17 AC 44 ms
61,772 KB
testcase_18 AC 40 ms
54,744 KB
testcase_19 AC 46 ms
62,172 KB
testcase_20 AC 41 ms
56,352 KB
testcase_21 AC 38 ms
52,620 KB
testcase_22 AC 43 ms
61,008 KB
testcase_23 AC 40 ms
54,640 KB
testcase_24 AC 42 ms
61,248 KB
testcase_25 AC 45 ms
62,828 KB
testcase_26 AC 39 ms
54,672 KB
testcase_27 AC 43 ms
56,260 KB
testcase_28 AC 44 ms
62,240 KB
testcase_29 AC 39 ms
55,044 KB
testcase_30 AC 41 ms
59,292 KB
testcase_31 AC 45 ms
63,184 KB
testcase_32 AC 39 ms
54,764 KB
testcase_33 AC 38 ms
52,768 KB
testcase_34 AC 41 ms
59,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=int(input())
A=list(map(int,input().split()))
b=int(input())
B=list(map(int,input().split()))
N=[0]*(n+1)
N[-1]=1
N=N+[-1]*k
for i in B:
    N[i]=2
for i in A:
    N[i]=-1
for i in reversed(range(n)):
    if N[i+1]==1 or N[i+k]==1:
        if N[i]==2:
            print("Yes")
            #print(N)
            exit()
        if N[i]==0:
            N[i]=1
print("No")
0