結果

問題 No.871 かえるのうた
ユーザー URechaRechaURechaRecha
提出日時 2019-09-02 16:24:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 39,812 KB
最終ジャッジ日時 2024-05-09 12:14:31
合計ジャッジ時間 8,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 35 ms
10,624 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 35 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 36 ms
11,264 KB
testcase_09 AC 38 ms
11,648 KB
testcase_10 AC 33 ms
10,880 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 57 ms
15,696 KB
testcase_13 AC 38 ms
12,032 KB
testcase_14 AC 172 ms
39,700 KB
testcase_15 AC 168 ms
39,540 KB
testcase_16 AC 655 ms
39,652 KB
testcase_17 AC 160 ms
37,092 KB
testcase_18 AC 54 ms
14,408 KB
testcase_19 WA -
testcase_20 AC 54 ms
13,056 KB
testcase_21 AC 102 ms
20,648 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 32 ms
10,496 KB
testcase_24 AC 31 ms
10,496 KB
testcase_25 AC 38 ms
11,264 KB
testcase_26 AC 59 ms
13,056 KB
testcase_27 AC 52 ms
14,592 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 99 ms
22,744 KB
testcase_30 AC 241 ms
31,996 KB
testcase_31 AC 35 ms
11,392 KB
testcase_32 AC 248 ms
29,196 KB
testcase_33 WA -
testcase_34 AC 69 ms
17,964 KB
testcase_35 AC 110 ms
26,640 KB
testcase_36 AC 137 ms
32,412 KB
testcase_37 AC 153 ms
21,916 KB
testcase_38 AC 670 ms
36,172 KB
testcase_39 WA -
testcase_40 AC 218 ms
21,964 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 590 ms
21,632 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 33 ms
10,752 KB
testcase_47 AC 32 ms
10,752 KB
testcase_48 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
frogs = []
cnt = 1
for p,v in zip(input().split(),input().split()):#zip(frogs_p,frogs_v):
    frogs.append((int(p),int(v)))
#K番目が鳴いた時、声が響く区間
section = [frogs[K-1][0] - frogs[K-1][1], frogs[K-1][0] + frogs[K-1][1]]
#K番目の蛙の前後の集団
frogs_before_K = frogs[:K-1]
frogs_after_K = frogs[K:]

flg = True
while flg:
    flg = False
    if len(frogs_before_K) > 0:
        if frogs_before_K[-1][0] in range(section[0],section[1]+1):
            cnt +=1
            if frogs_before_K[-1][0]-frogs_before_K[-1][1] < section[0]:
                section[0] = frogs_before_K[-1][0]-frogs_before_K[-1][1]
            frogs_before_K.pop(-1)
            flg = True
    if len(frogs_after_K) >0:
        if frogs_after_K[0][0] in range(section[0],section[1]+1):
            cnt +=1
            if frogs_after_K[0][0]+frogs_after_K[0][1] > section[1]:
                section[1] = frogs_after_K[0][0]+frogs_after_K[0][1]
            frogs_after_K.pop(0)
            flg = True
print(cnt)
0