結果
問題 | No.871 かえるのうた |
ユーザー | yakeshiba |
提出日時 | 2020-09-23 05:50:09 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 660 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 29,024 KB |
最終ジャッジ日時 | 2024-06-27 08:41:24 |
合計ジャッジ時間 | 6,244 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,256 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | WA | - |
testcase_05 | AC | 30 ms
11,008 KB |
testcase_06 | WA | - |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | AC | 32 ms
11,264 KB |
testcase_09 | AC | 33 ms
11,136 KB |
testcase_10 | WA | - |
testcase_11 | AC | 30 ms
11,008 KB |
testcase_12 | AC | 56 ms
13,652 KB |
testcase_13 | AC | 43 ms
11,264 KB |
testcase_14 | AC | 106 ms
28,144 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 101 ms
26,600 KB |
testcase_18 | AC | 41 ms
13,120 KB |
testcase_19 | AC | 689 ms
28,136 KB |
testcase_20 | WA | - |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
import bisect n, k = map(int,input().split()) X = list(map(int,input().split())) A = list(map(int,input().split())) r = [0]*n r[k-1] = 1 L = [X[k-1]-A[k-1]] R = [X[k-1]+A[k-1]] lprev, rprev = n-1, 0 left, right = 0, n-1 while True: left = bisect.bisect_left(X,min(L)) right = min(n-1,bisect.bisect_left(X,max(R))) if X[right] != max(R): right -= 1 L = [] R = [] for i in range(left,right+1): r[i] = 1 L.append(X[i]-A[i]) R.append(X[i]+A[i]) tmpl,lprev = lprev, min(left,lprev) tmpr,rprev = rprev, min(right,rprev) if tmpl == lprev and tmpr == rprev: break print(sum(r))