結果

問題 No.871 かえるのうた
ユーザー URechaRechaURechaRecha
提出日時 2019-09-02 16:30:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,844 KB
最終ジャッジ日時 2024-11-30 10:55:58
合計ジャッジ時間 7,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 29 ms
11,392 KB
testcase_09 AC 31 ms
11,520 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 26 ms
11,264 KB
testcase_12 AC 48 ms
15,848 KB
testcase_13 AC 32 ms
11,904 KB
testcase_14 AC 144 ms
40,588 KB
testcase_15 AC 146 ms
40,688 KB
testcase_16 AC 612 ms
40,064 KB
testcase_17 AC 139 ms
38,140 KB
testcase_18 AC 46 ms
14,556 KB
testcase_19 AC 162 ms
40,844 KB
testcase_20 AC 48 ms
13,056 KB
testcase_21 AC 92 ms
21,064 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 24 ms
10,752 KB
testcase_25 AC 31 ms
11,392 KB
testcase_26 AC 51 ms
13,184 KB
testcase_27 AC 43 ms
14,548 KB
testcase_28 AC 25 ms
11,008 KB
testcase_29 AC 85 ms
22,640 KB
testcase_30 AC 228 ms
32,020 KB
testcase_31 AC 32 ms
11,648 KB
testcase_32 AC 228 ms
28,752 KB
testcase_33 AC 163 ms
38,780 KB
testcase_34 AC 55 ms
18,112 KB
testcase_35 AC 92 ms
26,708 KB
testcase_36 AC 114 ms
32,692 KB
testcase_37 AC 141 ms
22,068 KB
testcase_38 AC 588 ms
36,332 KB
testcase_39 AC 381 ms
36,928 KB
testcase_40 AC 208 ms
22,668 KB
testcase_41 AC 27 ms
10,880 KB
testcase_42 AC 543 ms
22,668 KB
testcase_43 AC 27 ms
10,880 KB
testcase_44 AC 28 ms
11,008 KB
testcase_45 AC 31 ms
10,880 KB
testcase_46 AC 26 ms
10,880 KB
testcase_47 AC 26 ms
10,880 KB
testcase_48 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
frogs = []
cnt = 1
for p,v in zip(input().split(),input().split()):
    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]
            if frogs_before_K[-1][0]+frogs_before_K[-1][1] > section[1]:
                section[1] = 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[0]:
                section[0] = frogs_after_K[0][0]-frogs_after_K[0][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