結果

問題 No.871 かえるのうた
ユーザー titiatitia
提出日時 2019-08-30 22:17:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 512 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 38,492 KB
最終ジャッジ日時 2024-11-22 00:17:04
合計ジャッジ時間 62,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,312 KB
testcase_01 AC 29 ms
38,492 KB
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 37 ms
36,672 KB
testcase_04 AC 46 ms
17,568 KB
testcase_05 AC 32 ms
36,280 KB
testcase_06 AC 33 ms
17,572 KB
testcase_07 AC 33 ms
36,864 KB
testcase_08 AC 152 ms
17,956 KB
testcase_09 AC 169 ms
28,488 KB
testcase_10 AC 195 ms
17,440 KB
testcase_11 AC 95 ms
27,716 KB
testcase_12 AC 712 ms
20,132 KB
testcase_13 AC 320 ms
32,668 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 651 ms
19,768 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 44 ms
17,444 KB
testcase_23 AC 31 ms
27,676 KB
testcase_24 AC 30 ms
17,444 KB
testcase_25 AC 646 ms
17,960 KB
testcase_26 TLE -
testcase_27 AC 494 ms
12,928 KB
testcase_28 AC 30 ms
10,880 KB
testcase_29 AC 1,998 ms
17,968 KB
testcase_30 TLE -
testcase_31 AC 139 ms
11,008 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 838 ms
14,976 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 29 ms
10,752 KB
testcase_42 TLE -
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 39 ms
10,496 KB
testcase_45 AC 456 ms
10,752 KB
testcase_46 AC 30 ms
10,496 KB
testcase_47 AC 29 ms
10,624 KB
testcase_48 AC 29 ms
28,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
X=list(map(int,input().split()))
A=list(map(int,input().split()))

K-=1
ANS=[0]*N
PLUS=X[K]+A[K]
MINUS=X[K]-A[K]

for roop in range(100):

    for i in range(N):
        if X[i]<=PLUS and X[i]>=MINUS:
            ANS[i]=1
            PLUS=max(PLUS,X[i]+A[i])
            MINUS=min(MINUS,X[i]-A[i])

    for i in range(N-1,-1,-1):
        if X[i]<=PLUS and X[i]>=MINUS:
            ANS[i]=1
            PLUS=max(PLUS,X[i]+A[i])
            MINUS=min(MINUS,X[i]-A[i])

print(sum(ANS))
0