結果

問題 No.871 かえるのうた
ユーザー URechaRechaURechaRecha
提出日時 2019-09-02 16:30:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 40,840 KB
最終ジャッジ日時 2024-05-07 16:32:51
合計ジャッジ時間 6,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 30 ms
11,392 KB
testcase_09 AC 31 ms
11,648 KB
testcase_10 AC 29 ms
11,008 KB
testcase_11 AC 30 ms
11,136 KB
testcase_12 AC 51 ms
15,976 KB
testcase_13 AC 33 ms
12,032 KB
testcase_14 AC 154 ms
40,588 KB
testcase_15 AC 152 ms
40,652 KB
testcase_16 AC 629 ms
39,940 KB
testcase_17 AC 149 ms
38,236 KB
testcase_18 AC 49 ms
14,552 KB
testcase_19 AC 169 ms
40,840 KB
testcase_20 AC 51 ms
13,180 KB
testcase_21 AC 94 ms
20,940 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 25 ms
10,880 KB
testcase_24 AC 26 ms
11,008 KB
testcase_25 AC 31 ms
11,392 KB
testcase_26 AC 56 ms
13,440 KB
testcase_27 AC 44 ms
14,668 KB
testcase_28 AC 26 ms
11,008 KB
testcase_29 AC 86 ms
22,752 KB
testcase_30 AC 231 ms
32,024 KB
testcase_31 AC 31 ms
11,520 KB
testcase_32 AC 239 ms
28,836 KB
testcase_33 AC 169 ms
39,016 KB
testcase_34 AC 56 ms
18,112 KB
testcase_35 AC 96 ms
26,832 KB
testcase_36 AC 120 ms
32,568 KB
testcase_37 AC 149 ms
22,072 KB
testcase_38 AC 601 ms
36,336 KB
testcase_39 AC 388 ms
37,184 KB
testcase_40 AC 228 ms
22,796 KB
testcase_41 AC 28 ms
10,880 KB
testcase_42 AC 527 ms
22,668 KB
testcase_43 AC 27 ms
11,008 KB
testcase_44 AC 26 ms
10,880 KB
testcase_45 AC 31 ms
11,008 KB
testcase_46 AC 27 ms
10,880 KB
testcase_47 AC 26 ms
11,008 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