結果

問題 No.871 かえるのうた
ユーザー na-shna-sh
提出日時 2019-09-03 14:25:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 321 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,444 KB
最終ジャッジ日時 2024-12-24 01:05:07
合計ジャッジ時間 57,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,696 KB
testcase_01 AC 31 ms
16,000 KB
testcase_02 AC 34 ms
16,000 KB
testcase_03 AC 32 ms
37,392 KB
testcase_04 AC 33 ms
15,872 KB
testcase_05 AC 32 ms
39,708 KB
testcase_06 AC 32 ms
15,872 KB
testcase_07 AC 31 ms
38,832 KB
testcase_08 AC 165 ms
23,548 KB
testcase_09 AC 263 ms
16,384 KB
testcase_10 AC 185 ms
16,000 KB
testcase_11 AC 33 ms
26,848 KB
testcase_12 TLE -
testcase_13 AC 730 ms
18,208 KB
testcase_14 AC 381 ms
31,924 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 144 ms
46,444 KB
testcase_18 AC 52 ms
18,420 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 33 ms
16,256 KB
testcase_23 AC 32 ms
28,024 KB
testcase_24 AC 32 ms
16,128 KB
testcase_25 AC 1,805 ms
38,236 KB
testcase_26 TLE -
testcase_27 AC 1,733 ms
19,620 KB
testcase_28 AC 31 ms
17,704 KB
testcase_29 AC 92 ms
23,180 KB
testcase_30 TLE -
testcase_31 AC 37 ms
11,136 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 63 ms
14,936 KB
testcase_35 TLE -
testcase_36 AC 119 ms
22,304 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 34 ms
10,880 KB
testcase_42 TLE -
testcase_43 AC 32 ms
10,752 KB
testcase_44 AC 35 ms
10,752 KB
testcase_45 AC 977 ms
11,008 KB
testcase_46 AC 34 ms
10,752 KB
testcase_47 AC 32 ms
10,752 KB
testcase_48 AC 32 ms
17,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

hear = {K-1}
cried = set()
while len(hear):
    h = hear.pop()
    cried.add(h)
    for i, c in enumerate(X):
        if X[h] - A[h] <= c <= X[h] + A[h] and i not in cried:
            hear.add(i)
print(len(cried))
0