锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久精品www人人爽人人,亚洲欧美成人久久综合中文网,国产精品毛片久久久久久久http://www.shnenglu.com/Uriel/category/11827.htmlResearch Associate @ Harvard University / Research Interests: Computer Vision, Biomedical Image Analysis, Machine Learningzh-cnTue, 05 Dec 2023 13:07:44 GMTTue, 05 Dec 2023 13:07:44 GMT60[LeetCode]1611. Minimum One Bit Operations to Make Integers Zero (Hard) Python-2023.11.30http://www.shnenglu.com/Uriel/articles/230208.htmlUrielUrielThu, 30 Nov 2023 17:41:00 GMThttp://www.shnenglu.com/Uriel/articles/230208.htmlhttp://www.shnenglu.com/Uriel/comments/230208.htmlhttp://www.shnenglu.com/Uriel/articles/230208.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/230208.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/230208.html
1. Change the rightmost (0th) bit in the binary representation of n.
2. Change the ith bit in the binary representation of n if the (i-1)th bit is set to 1 and the (i-2)th through 0th bits are set to 0.

寰堝鐨勬濊礬鍙傝?-> https://leetcode.com/problems/minimum-one-bit-operations-to-make-integers-zero/solutions/2273798/easy-to-understand-6-line-solution-with-explanation-o-n-time-o-1-space/?envType=daily-question&envId=2023-11-30


 1 #1611
 2 #Runtime: 17 ms (Beats 66.67%)
 3 #Memory: 13.4 MB (Beats 33.33%)
 4 
 5 class Solution(object):
 6     def minimumOneBitOperations(self, n):
 7         """
 8         :type n: int
 9         :rtype: int
10         """
11         binary = format(n, "b")
12         ans = 0
13         for i in xrange(1, len(binary) + 1):
14             if binary[-i] == "1":
15                 ans = 2**i - 1 - ans
16         return ans


Uriel 2023-12-01 01:41 鍙戣〃璇勮
]]>
[LeetCode]1814. Count Nice Pairs in an Array (Medium) Python-2023.11.21http://www.shnenglu.com/Uriel/articles/230191.htmlUrielUrielTue, 21 Nov 2023 13:48:00 GMThttp://www.shnenglu.com/Uriel/articles/230191.htmlhttp://www.shnenglu.com/Uriel/comments/230191.htmlhttp://www.shnenglu.com/Uriel/articles/230191.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/230191.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/230191.htmla+rev(b)=b+rev(a) -> a - rev(a) + b - rev(b) = 0錛屾墍浠ラ澶勭悊鎵鏈塧-rev(a)錛岀劧鍚庣敤Counter璁$畻姣忕value鍑虹幇嬈℃暟鐒跺悗绱姞


#1814
#
Runtime: 586 ms (Beats 78.13%)
#
Memory: 23 MB (Beats 43.75%)

class Solution(object):
    def countNicePairs(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        
"""
        nums = [x - int(str(x)[::-1]) for x in nums]
        ans = 0
        for x in Counter(nums).values():
            ans = (ans + (x - 1) * x // 2) % (10**9 + 7)
        return ans


Uriel 2023-11-21 21:48 鍙戣〃璇勮
]]>
[LeetCode]343. Integer Break (Medium) Python-2023.10.06http://www.shnenglu.com/Uriel/articles/230131.htmlUrielUrielFri, 06 Oct 2023 17:19:00 GMThttp://www.shnenglu.com/Uriel/articles/230131.htmlhttp://www.shnenglu.com/Uriel/comments/230131.htmlhttp://www.shnenglu.com/Uriel/articles/230131.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/230131.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/230131.html灝藉彲鑳芥媶鎴愭渶澶氱殑3錛岃嫢鍓╀笅4鍒欎笉鎷?br />
 1 #343
 2 #Runtime: 17 ms (Beats 54.55%)
 3 #Memory: 13.3 MB (Beats 42.93%)
 4 
 5 class Solution(object):
 6     def integerBreak(self, n):
 7         """
 8         :type n: int
 9         :rtype: int
10         """
11         if n < 4:
12             return n - 1
13         if n % 3 == 0:
14             return 3**(n//3)
15         if n % 3 == 1:
16             return 3**(n//3 - 1) * 4
17         return 3**(n//3) * 2


Uriel 2023-10-07 01:19 鍙戣〃璇勮
]]>
[LeetCode]880. Decoded String at Index (Medium) Python-2023.09.27http://www.shnenglu.com/Uriel/articles/230107.htmlUrielUrielWed, 27 Sep 2023 09:41:00 GMThttp://www.shnenglu.com/Uriel/articles/230107.htmlhttp://www.shnenglu.com/Uriel/comments/230107.htmlhttp://www.shnenglu.com/Uriel/articles/230107.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/230107.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/230107.html濡傛灉鎶婃暣涓粨鏋滃瓧絎︿覆閮借褰曚笅鏉ヤ細(xì)MLE錛屾墍浠ュ彧瑕佸掓帹絎琸浣嶅搴旂涓嬈″嚭鐜版椂鐨勪綅緗紝杈撳嚭閭d釜瀛楃


 1 #880
 2 #Runtime: 20 ms Beats 12.50%)
 3 #Memory: 13.5 MB (Beats 29.17%)
 4 
 5 class Solution(object):
 6     def decodeAtIndex(self, s, k):
 7         """
 8         :type s: str
 9         :type k: int
10         :rtype: str
11         """
12         l = 0
13         for ch in s:
14             if ch.isdigit():
15                 l *= int(ch)
16             else:
17                 l += 1
18         for i in range(len(s) - 1, -1, -1):
19             if s[i].isdigit():
20                 l //= int(s[i])
21                 k %= l
22             else:
23                 if l == k or k == 0:
24                     return s[i]
25                 l -= 1


Uriel 2023-09-27 17:41 鍙戣〃璇勮
]]>
[LeetCode]799. Champagne Tower (Medium) Python-2023.09.24http://www.shnenglu.com/Uriel/articles/230101.htmlUrielUrielSun, 24 Sep 2023 08:53:00 GMThttp://www.shnenglu.com/Uriel/articles/230101.htmlhttp://www.shnenglu.com/Uriel/comments/230101.htmlhttp://www.shnenglu.com/Uriel/articles/230101.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/230101.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/230101.html鏈塹uery_row灞傚瀿璧鋒潵鐨勭幓鐠冩澂錛岀i灞傛湁i涓澂瀛愶紝浠庣涓灞傚紑濮嬪掓按錛屽掕繘鍘籶oured鏉按錛屾眰闂query_row灞傜query_glass涓澂瀛愭湁澶氬皯姘?br />鎸夊眰寰涓嬬畻錛屾瘡嬈″噺鍘誨綋鍓嶆澂瀛愯榪涚殑1鏉紝鍓╀笅瀵瑰崐鍒嗗叆涓嬩竴灞傜浉閭諱袱涓澂瀛?br />

 1 #799
 2 #Runtime: 59 ms (Beats 62.50%)
 3 #Memory: 13.3 MB (Beats 45.11%)
 4 
 5 class Solution(object):
 6     def champagneTower(self, poured, query_row, query_glass):
 7         """
 8         :type poured: int
 9         :type query_row: int
10         :type query_glass: int
11         :rtype: float
12         """
13         dp = [[0 for _ in range(x)] for x in range(1, query_row + 2)]
14         dp[0][0] = poured
15         for i in range(query_row):
16             for j in range(len(dp[i])):
17                 tp = (dp[i][j] - 1) / 2.0
18                 if tp > 0:
19                     dp[i + 1][j] += tp
20                     dp[i + 1][j + 1] += tp
21         return dp[query_row][query_glass] if dp[query_row][query_glass] <= 1 else 1


Uriel 2023-09-24 16:53 鍙戣〃璇勮
]]>
[LeetCode]1359. Count All Valid Pickup and Delivery Options (Hard) Python-2023.09.10http://www.shnenglu.com/Uriel/articles/230076.htmlUrielUrielSun, 10 Sep 2023 07:42:00 GMThttp://www.shnenglu.com/Uriel/articles/230076.htmlhttp://www.shnenglu.com/Uriel/comments/230076.htmlhttp://www.shnenglu.com/Uriel/articles/230076.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/230076.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/230076.html鎬濊礬鍙傝?> https://leetcode.com/problems/count-all-valid-pickup-and-delivery-options/solutions/516968/java-c-python-easy-and-concise/


 1 #1359
 2 #Runtime: 13 ms (Beats 77.42%)
 3 #Memory: 13.2 MB (Beats 80.65%)
 4 
 5 class Solution(object):
 6     def countOrders(self, n):
 7         """
 8         :type n: int
 9         :rtype: int
10         """
11         MOD = 10 ** 9 + 7
12         ans = 1
13         for i in range(2, n + 1):
14             ans = ans * (2 * i - 1) * i % MOD
15         return ans


Uriel 2023-09-10 15:42 鍙戣〃璇勮
]]>
[LeetCode]808. Soup Servings (Medium) Python3-2023.07.29http://www.shnenglu.com/Uriel/articles/229996.htmlUrielUrielSat, 29 Jul 2023 10:07:00 GMThttp://www.shnenglu.com/Uriel/articles/229996.htmlhttp://www.shnenglu.com/Uriel/comments/229996.htmlhttp://www.shnenglu.com/Uriel/articles/229996.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229996.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229996.html

 1 #808
 2 #Runtime: 36 ms (Beats 100%)
 3 #Memory: 17 MB (Beats 79.25%)
 4 
 5 class Solution:
 6     def soupServings(self, n: int) -> float:
 7         if n >= 4276: 
 8             return 1.0
 9         @lru_cache(None)
10         def dp(x, y):
11             if x <= 0 and y > 0:
12                 return 1
13             if x <= 0 and y <= 0:
14                 return 0.5
15             if x > 0 and y <= 0:
16                 return 0
17             return (dp(x - 100, y) + dp(x - 75, y - 25) + dp(x - 50, y - 50) + dp(x - 25, y - 75)) * 0.25
18         
19         return dp(1.0 * n, 1.0 * n)


Uriel 2023-07-29 18:07 鍙戣〃璇勮
]]>
[LeetCode]319. Bulb Switcher (Medium) Python-2023.04.27http://www.shnenglu.com/Uriel/articles/229849.htmlUrielUrielThu, 27 Apr 2023 13:49:00 GMThttp://www.shnenglu.com/Uriel/articles/229849.htmlhttp://www.shnenglu.com/Uriel/comments/229849.htmlhttp://www.shnenglu.com/Uriel/articles/229849.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229849.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229849.html鐪嬩簡Discussion鎵嶆槑鐧?>https://leetcode.com/problems/bulb-switcher/solutions/3459201


 1 #319
 2 #Runtime: 17 ms (Beats 49.15%)
 3 #Memory: 13.2 MB (Beats 91.53%)
 4 
 5 class Solution(object):
 6     def bulbSwitch(self, n):
 7         """
 8         :type n: int
 9         :rtype: int
10         """
11         return int(sqrt(n))


Uriel 2023-04-27 21:49 鍙戣〃璇勮
]]>
[LeetCode]2348. Number of Zero-Filled Subarrays (Medium) Python-2023.03.21http://www.shnenglu.com/Uriel/articles/229765.htmlUrielUrielTue, 21 Mar 2023 08:08:00 GMThttp://www.shnenglu.com/Uriel/articles/229765.htmlhttp://www.shnenglu.com/Uriel/comments/229765.htmlhttp://www.shnenglu.com/Uriel/articles/229765.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229765.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229765.html涓嶆檽寰椾負(fù)鍟ヨ繖鏍風(fēng)殑綆鍗曟暟瀛﹂鏄疢edium錛熷亣璁炬湁榪炵畫鐨刱涓?錛岄偅涔堝彲浠ョ敓鎴?+2+...+k涓叏0瀛愪覆錛岀畝鍗曠瓑宸暟鍒楁眰鍜?br />

 1 #2348
 2 #Runtime: 865 ms (Beats 80.65%)
 3 #Memory: 22.8 MB (Beats 61.29%)
 4 
 5 class Solution(object):
 6     def zeroFilledSubarray(self, nums):
 7         """
 8         :type nums: List[int]
 9         :rtype: int
10         """
11         ans, t = 0, 0
12         for i in range(len(nums)):
13             if nums[i] != 0:
14                 t = 0
15             else:
16                 t += 1
17                 ans += t
18         return ans


Uriel 2023-03-21 16:08 鍙戣〃璇勮
]]>
[LeetCode]382. Linked List Random Node (Medium) Python-2023.03.10http://www.shnenglu.com/Uriel/articles/229734.htmlUrielUrielFri, 10 Mar 2023 09:44:00 GMThttp://www.shnenglu.com/Uriel/articles/229734.htmlhttp://www.shnenglu.com/Uriel/comments/229734.htmlhttp://www.shnenglu.com/Uriel/articles/229734.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229734.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229734.html 1 #382
 2 #Runtime: 167 ms (Beats 33.87%)
 3 #Memory: 17.9 MB (Beats 11.29%)
 4 
 5 # Definition for singly-linked list.
 6 # class ListNode(object):
 7 #     def __init__(self, val=0, next=None):
 8 #         self.val = val
 9 #         self.next = next
10 class Solution(object):
11 
12     def __init__(self, head):
13         """
14         :type head: Optional[ListNode]
15         """
16         self.head = head
17         
18 
19     def getRandom(self):
20         """
21         :rtype: int
22         """
23         ans = self.head
24         p = self.head
25         cnt = 0
26         while p:
27             cnt += 1
28             if random.randint(1, cnt) == 1:
29                 ans = p.val
30             p = p.next
31         return ans
32 
33 # Your Solution object will be instantiated and called as such:
34 # obj = Solution(head)
35 # param_1 = obj.getRandom()閾捐〃鐨勫嚱鏁幫紝浣夸箣姣忔璋冪敤鍙互闅忔満杈撳嚭鍏朵腑涓涓?br />鍙傝冧簡discussion鐨凴eservoir sampling鎬濊礬->https://leetcode.com/problems/linked-list-random-node/solutions/3278159/easy-solutions-in-java-python-and-c-look-at-once/




Uriel 2023-03-10 17:44 鍙戣〃璇勮
]]>
[LeetCode]1523. Count Odd Numbers in an Interval Range (Easy) Python-2023.02.13http://www.shnenglu.com/Uriel/articles/229676.htmlUrielUrielMon, 13 Feb 2023 09:31:00 GMThttp://www.shnenglu.com/Uriel/articles/229676.htmlhttp://www.shnenglu.com/Uriel/comments/229676.htmlhttp://www.shnenglu.com/Uriel/articles/229676.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229676.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229676.html

 1 #1523
 2 #Runtime: 22 ms (Beats 34.12%)
 3 #Memory: 13.2 MB (Beats 98.78%)
 4 
 5 class Solution(object):
 6     def countOdds(self, low, high):
 7         """
 8         :type low: int
 9         :type high: int
10         :rtype: int
11         """
12         ans = 0
13         if low < high:
14             ans = (high - low + 1) // 2
15         if low % 2 and high % 2:
16             ans += 1
17         return ans


Uriel 2023-02-13 17:31 鍙戣〃璇勮
]]>
[LeetCode]974. Subarray Sums Divisible by K (Medium) Python-2023.01.19http://www.shnenglu.com/Uriel/articles/229634.htmlUrielUrielThu, 19 Jan 2023 12:11:00 GMThttp://www.shnenglu.com/Uriel/articles/229634.htmlhttp://www.shnenglu.com/Uriel/comments/229634.htmlhttp://www.shnenglu.com/Uriel/articles/229634.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229634.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229634.html鍙傝冧簡Discussion錛?br />鍏堥澶勭悊prefix_sum錛?k涔嬪悗鐨勫鹼級
濡傛灉瀛愪覆nums[i]~num[j]涔嬪拰鍙互琚玨鏁撮櫎錛岃鏄巔refix_sum[i] = prefix_sum[j]錛屼簬鏄敤dict瀛樺悇縐峱refix_sum鐨勫彲鑳芥ф湁澶氬皯錛屾渶鍚?br />ans = sum(prefix_sum[x] * (prefix_sum[x]- 1) / 2), x=0~k-1
鍥犱負(fù)鏄疌(n, 2)鐨勭粍鍚堟暟錛屾墍浠ヤ笉蹇呯瓑鎵鏈塸refix_sum璁$畻瀹屽啀涓涓釜綆楋紝鍦ㄦ壂鎻弉ums錛岃綆楀綋鍓峱refix_sum鐨勬椂鍊欓『渚跨瘡鍔犲嵆鍙?br />娉ㄦ剰鍒濆鍖杙refix_sum[0] = 1錛屽洜涓轟竴涓暟閮戒笉鍙栫殑璇濆拰涓?


 1 #974
 2 #Runtime: 232 ms (Beats 92.68%)
 3 #Memory: 16.8 MB (Beats 37.80%)
 4 
 5 class Solution(object):
 6     def subarraysDivByK(self, nums, k):
 7         """
 8         :type nums: List[int]
 9         :type k: int
10         :rtype: int
11         """
12         pre_sum = defaultdict(int)
13         t, ans = 0, 0
14         pre_sum[0] = 1
15         for i in nums:
16             t = (t + i) % k
17             pre_sum[t] += 1
18             ans += pre_sum[t] - 1
19         return ans


Uriel 2023-01-19 20:11 鍙戣〃璇勮
]]>
[LeetCode]60. Permutation Sequence (Hard) Python-2022.11.06http://www.shnenglu.com/Uriel/articles/229488.htmlUrielUrielSun, 06 Nov 2022 21:08:00 GMThttp://www.shnenglu.com/Uriel/articles/229488.htmlhttp://www.shnenglu.com/Uriel/comments/229488.htmlhttp://www.shnenglu.com/Uriel/articles/229488.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229488.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229488.html姹?-n榪檔涓暟瀛楃殑絎琸涓帓鍒楁暟
鐩存帴涓嶆柇姹備笅涓涓帓鍒楁暟浼?xì)TLE錛岃冭檻鍒癷涓暟瀛楃殑鎺掑垪鏁頒竴鍏眎!縐嶏紝浜庢槸瀵逛粠鍋氬埌浣嶆瘡涓浣嶇疆i錛屼笉鏂暣闄ゅ墿浣欐暟瀛椾釜鏁扮殑闃朵箻錛屾潵紜畾璇ヤ綅鏁板簲璇ュ~鍏呭摢涓?/div>
 1 #60
 2 #Runtime: 29 ms
 3 #Memory Usage: 13.7 MB
 4 
 5 class Solution(object):  
 6     def getPermutation(self, n, k):
 7         """
 8         :type n: int
 9         :type k: int
10         :rtype: str
11         """
12         nums = range(1, n + 1)
13         ans = []
14         fac = []
15         nt = 1
16         for i in range(2, n+2):
17             fac.append(nt)
18             nt *= i
19         k -= 1
20         for i in range(n):
21             nt = k // fac[n - i - 2]
22             ans.append(nums[nt])
23             nums.pop(nt)
24             k %= fac[n - i - 2]
25         return ''.join(str(i) for i in ans)


Uriel 2022-11-07 05:08 鍙戣〃璇勮
]]>[LeetCode]31. Next Permutation (Medium) Python-2022.11.06http://www.shnenglu.com/Uriel/articles/229487.htmlUrielUrielSun, 06 Nov 2022 20:27:00 GMThttp://www.shnenglu.com/Uriel/articles/229487.htmlhttp://www.shnenglu.com/Uriel/comments/229487.htmlhttp://www.shnenglu.com/Uriel/articles/229487.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/229487.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/229487.html緇欎竴鍒楁暟錛岀敓鎴愪笅涓涓帓鍒楁暟
浠庢渶鍚庝竴涓暟瀛楀悜鍓嶆壂錛屾壘鍒版渶闀跨殑鍗囧簭鍚庣紑錛屽崌搴忓悗緙鍓嶄竴浣嶅拰鍗囧簭鍚庣紑絎竴浣嶅ぇ浜庤鏁扮殑鏁板瓧浜ゆ崲錛岀劧鍚庡崌搴忓垪reverse
涓句緥錛?/div>
1 2 5 3 3 0
鍗囧簭鍚庣紑鐨勫墠涓浣嶄負(fù)2錛屽崌搴忓悗緙絎竴涓ぇ浜?鐨勬暟涓?錛屼氦鎹袱涓暟錛屽緱鍒?/div>
1 3 5 3 2 0
reverse鍗囧簭鍚庣紑
1 3 0 2 3 5

濡傛灉宸茬粡鏄渶鍚庝竴涓帓鍒楁暟錛屽
5 4 3 2 1
鍒欎笉瀛樺湪鍓嶄竴浣嶏紝鐩存帴reverse

 1 #31
 2 #Runtime: 53 ms
 3 #Memory Usage: 13.3 MB
 4 
 5 class Solution(object):
 6     def nextPermutation(self, nums):
 7         """
 8         :type nums: List[int]
 9         :rtype: None Do not return anything, modify nums in-place instead.
10         """
11         f = -1
12         for i in range(len(nums)-2-1-1):
13             if nums[i] < nums[i + 1]:
14                 f = i
15                 break
16         if f >= 0:
17             for i in range(len(nums)-1-1-1):
18                 if nums[i] > nums[f]:
19                     nums[f], nums[i] = nums[i], nums[f]
20                     break
21         nums[f + 1 : ] = nums[f + 1 : ][ : : -1]
22         return nums
23 


Uriel 2022-11-07 04:27 鍙戣〃璇勮
]]>POJ 1017 Packets---妯℃嫙錛熸暟瀛︼紵http://www.shnenglu.com/Uriel/articles/109388.htmlUrielUrielWed, 10 Mar 2010 12:28:00 GMThttp://www.shnenglu.com/Uriel/articles/109388.htmlhttp://www.shnenglu.com/Uriel/comments/109388.htmlhttp://www.shnenglu.com/Uriel/articles/109388.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/109388.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/109388.html        姝eソ鏈変漢闂紝灝卞湪榪欓噷璐翠竴涓嬶紝褰撴椂鐨勪唬鐮佸ソWS銆傘傚ぇ瀹舵棤瑙嗕箣銆傘?br>        鏂規(guī)硶涔堛傘傚氨鏄厛鏀?*6錛?*5錛?*4錛?*3鐒跺悗鍏堝敖閲忓湪緙濋殭閲屽2*2錛?*1錛屼笉澶熺殑璇濆啀鍙﹀鐢ㄦ柊鐨勮錛屾瘡縐嶆儏鍐靛鍑犱釜鍟ョ殑閭d簺鏁板瓧鑽夌ǹ綰鎬笂鐢葷敾灝卞嚭鏉ヤ簡~
#include<stdio.h>
#include
<math.h>
#include
<stdlib.h>

int w1,w2,w3,w4,w5,w6,sum,x,s1,y,s2,temp;
int main()
{
    
while(1)
    

        scanf(
"%d %d %d %d %d %d",&w1,&w2,&w3,&w4,&w5,&w6);
        
if(w1==0 && w2==0 && w3==0 && w4==0 && w5==0 && w6==0)exit(0);
        temp
=w2;
        s2
=0;
        sum
=w6+w5+w4+ceil(w3/4.0);
        s2
+=11*w5;
        w2
-=5*w4;
        s2
+=20*w4;
        
if(w3%4==1)
        
{
            w2
-=5;
            s2
+=27;
        }

        
else if(w3%4==2)
        
{
            w2
-=3;
            s2
+=18;
        }

        
else if(w3%4==3)
        
{
            w2
-=1;
            s2
+=9;
        }

        x
=0;
        
if(w2>=0)
        
{
            sum
+=ceil(w2/9.0);
            s2
+=36*(ceil(w2/9.0));
            w1
=w1-s2+temp*4;
            
if(w1>0)sum+=ceil(w1/36.0);
        }

        
else
        
{
            w1
=w1-s2+temp*4;
            
if(w1>0)sum+=ceil(w1/36.0);
        }

        printf(
"%d\n",sum);
    }

    
return 0;
}


       

Uriel 2010-03-10 20:28 鍙戣〃璇勮
]]>
POJ 1995 Raising Modulo Numbers---鏁拌http://www.shnenglu.com/Uriel/articles/107357.htmlUrielUrielFri, 05 Feb 2010 20:05:00 GMThttp://www.shnenglu.com/Uriel/articles/107357.htmlhttp://www.shnenglu.com/Uriel/comments/107357.htmlhttp://www.shnenglu.com/Uriel/articles/107357.html#Feedback0http://www.shnenglu.com/Uriel/comments/commentRss/107357.htmlhttp://www.shnenglu.com/Uriel/services/trackbacks/107357.html
/*Problem: 1995  User: Uriel 
   Memory: 164K  Time: 94MS 
   Language: C++  Result: Accepted
*/
 

#include
<stdio.h>
#include
<stdlib.h>

int a,b,t,m,res,h;

int modExp(int a, int b, int n)
{
    
int t = 1, y = a;
    
while(b != 0)
    
{
        y 
%= n;
        
if(b % 2 == 1)
            t 
= t % n * y % n;
        y 
= y * y % n; 
        b 
= b >> 1;
    }

    
return t;
}


int main()
{
    
int i;
    scanf(
"%d",&t);
    
while(t--)
    
{
        scanf(
"%d",&m);
        scanf(
"%d",&h);
        res
=0;
        
for(i=0;i<h;i++)
        
{
            scanf(
"%d %d",&a,&b);
            res
=(res+modExp(a,b,m))%m;
        }

        printf(
"%d\n",res);
    }

//    system("PAUSE");
    return 0;
}

            


Uriel 2010-02-06 04:05 鍙戣〃璇勮
]]>
POJ 2085 Inversion---鎵捐寰?/title><link>http://www.shnenglu.com/Uriel/articles/94458.html</link><dc:creator>Uriel</dc:creator><author>Uriel</author><pubDate>Wed, 26 Aug 2009 07:09:00 GMT</pubDate><guid>http://www.shnenglu.com/Uriel/articles/94458.html</guid><wfw:comment>http://www.shnenglu.com/Uriel/comments/94458.html</wfw:comment><comments>http://www.shnenglu.com/Uriel/articles/94458.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/Uriel/comments/commentRss/94458.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/Uriel/services/trackbacks/94458.html</trackback:ping><description><![CDATA[榪欓涓簡寰堜箙錛屼竴鐩存病浠涔堟濊礬錛屼粖澶╃湅Discuss璇存壘瑙勫緥鐒跺悗灝卞皾璇曚簡涓涓嬶紝琚粫寰楁湁鐐瑰ご鏅曘傘?br>鍦ㄧ綉涓婃壘浜嗕竴涓В棰樻姤鍛婏紝璨屼技娌¤冭檻 m=0 鐨勬儏鍐碉紝浣嗘槸涔熷彲浠C錛岄鐩殑Bug錛?br>鐒跺悗鐞嗕簡涓嬫濊礬錛屼竴嬈C銆傘傝冭檻浜嗘瘮濡傦紙1  0錛夎緭鍑?1  鐨勬儏鍐?br>涓嬮潰鏄敤鏉ユ壘瑙勫緥鐨勬暟鎹?br><br>1 2 3 4 5 6 7 8 9 10   9      0     remain          -  <br>1 2 3 4 5 6 7 8 10 9   8      1   |    10, 9 <br>1 2 3 4 5 6 7 9 10 8   7      2   |    9, 10 8 <br>1 2 3 4 5 6 7 10 9 8   7           |    10, 9 8<br>1 2 3 4 5 6 8 10 9 7   6      3   |    8, 10 9 7<br>1 2 3 4 5 6 9 10 8 7   6           |    9, 10 8 7<br>1 2 3 4 5 6 10 9 8 7   6           |    10, 9 8 7<br>1 2 3 4 5 7 10 9 8 6   5      4   |    7, 10 9 8 6<br>1 2 3 4 5 8 10 9 7 6   5           |    8, 10 9 7 6<br>1 2 3 4 5 9 10 8 7 6   5           |    9, 10 8 7 6<br>1 2 3 4 5 10 9 8 7 6   5          \|/  10, 9 8 7 6<br>1 2 3 4 6 10 9 8 7 5   4      5   <br>1 2 3 4 7 10 9 8 6 5   4<br>1 2 3 4 8 10 9 7 6 5   4<br>1 2 3 4 9 10 8 7 6 5   4<br>1 2 3 4 10 9 8 7 6 5   4<br>1 2 3 5 10 9 8 7 6 4   3      6<br>1 2 3 6 10 9 8 7 5 4   3<br>1 2 3 7 10 9 8 6 5 4   3<br>1 2 3 8 10 9 7 6 5 4   3<br>1 2 3 9 10 8 7 6 5 4   3<br>1 2 3 10 9 8 7 6 5 4   3<br>1 2 4 10 9 8 7 6 5 3   2      7<br>1 2 5 10 9 8 7 6 4 3   2<br>1 2 6 10 9 8 7 5 4 3   2<br>1 2 7 10 9 8 6 5 4 3   2<br>1 2 8 10 9 7 6 5 4 3   2<br>1 2 9 10 8 7 6 5 4 3   2<br>1 2 10 9 8 7 6 5 4 3   2<br>1 3 10 9 8 7 6 5 4 2   1      8<br>1 4 10 9 8 7 6 5 3 2   1<br>1 5 10 9 8 7 6 4 3 2   1<br>1 6 10 9 8 7 5 4 3 2   1<br>1 7 10 9 8 6 5 4 3 2   1<br>1 8 10 9 7 6 5 4 3 2   1<br>1 9 10 8 7 6 5 4 3 2   1<br>1 10 9 8 7 6 5 4 3 2   1<br>2 10 9 8 7 6 5 4 3 1   0      9<br>3 10 9 8 7 6 5 4 2 1   0<br>4 10 9 8 7 6 5 3 2 1   0<br>5 10 9 8 7 6 4 3 2 1   0<br>6 10 9 8 7 5 4 3 2 1   0<br>7 10 9 8 6 5 4 3 2 1   0<br>8 10 9 7 6 5 4 3 2 1   0 <br>9 10 8 7 6 5 4 3 2 1   0<br>10 9 8 7 6 5 4 3 2 1   0<br><br>涓嬮潰鏄疉C浠g爜錛?br> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img id=Codehighlighter1_0_95_Open_Image onclick="this.style.display='none'; Codehighlighter1_0_95_Open_Text.style.display='none'; Codehighlighter1_0_95_Closed_Image.style.display='inline'; Codehighlighter1_0_95_Closed_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_0_95_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_0_95_Closed_Text.style.display='none'; Codehighlighter1_0_95_Open_Image.style.display='inline'; Codehighlighter1_0_95_Open_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top><span id=Codehighlighter1_0_95_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id=Codehighlighter1_0_95_Open_Text><span style="COLOR: #008000">/*</span><span style="COLOR: #008000">Problem: 2085  User: Uriel <br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>   Memory: 384K  Time: 125MS <br><img src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>   Language: C++  Result: Accepted</span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"> <br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">stdio.h</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">stdlib.h</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">string</span><span style="COLOR: #000000">.h</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> n,m,i,j,k,flag[</span><span style="COLOR: #000000">50001</span><span style="COLOR: #000000">];<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> main()<br><img id=Codehighlighter1_195_735_Open_Image onclick="this.style.display='none'; Codehighlighter1_195_735_Open_Text.style.display='none'; Codehighlighter1_195_735_Closed_Image.style.display='inline'; Codehighlighter1_195_735_Closed_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_195_735_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_195_735_Closed_Text.style.display='none'; Codehighlighter1_195_735_Open_Image.style.display='inline'; Codehighlighter1_195_735_Open_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_195_735_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://www.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_195_735_Open_Text><span style="COLOR: #000000">{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">while</span><span style="COLOR: #000000">(</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">)<br><img id=Codehighlighter1_214_698_Open_Image onclick="this.style.display='none'; Codehighlighter1_214_698_Open_Text.style.display='none'; Codehighlighter1_214_698_Closed_Image.style.display='inline'; Codehighlighter1_214_698_Closed_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_214_698_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_214_698_Closed_Text.style.display='none'; Codehighlighter1_214_698_Open_Image.style.display='inline'; Codehighlighter1_214_698_Open_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>    </span><span id=Codehighlighter1_214_698_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://www.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_214_698_Open_Text><span style="COLOR: #000000">{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        scanf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d %d</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">n,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">m);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">if</span><span style="COLOR: #000000">(n</span><span style="COLOR: #000000">==-</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">&&</span><span style="COLOR: #000000"> m</span><span style="COLOR: #000000">==-</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">)</span><span style="COLOR: #0000ff">break</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        memset(flag,</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">,</span><span style="COLOR: #0000ff">sizeof</span><span style="COLOR: #000000">(flag));<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">while</span><span style="COLOR: #000000">((</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">)</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">i</span><span style="COLOR: #000000">/</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">)</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">m)i</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000"><=</span><span style="COLOR: #000000">n</span><span style="COLOR: #000000">-</span><span style="COLOR: #000000">i</span><span style="COLOR: #000000">-</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">)<br><img id=Codehighlighter1_402_464_Open_Image onclick="this.style.display='none'; Codehighlighter1_402_464_Open_Text.style.display='none'; Codehighlighter1_402_464_Closed_Image.style.display='inline'; Codehighlighter1_402_464_Closed_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_402_464_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_402_464_Closed_Text.style.display='none'; Codehighlighter1_402_464_Open_Image.style.display='inline'; Codehighlighter1_402_464_Open_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>        </span><span id=Codehighlighter1_402_464_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://www.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_402_464_Open_Text><span style="COLOR: #000000">{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            flag[j]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,j);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>        }</span></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        k</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">n</span><span style="COLOR: #000000">-</span><span style="COLOR: #000000">i</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">(m</span><span style="COLOR: #000000">-</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">-</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">)</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">i</span><span style="COLOR: #000000">/</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,k);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        flag[k]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">n;j</span><span style="COLOR: #000000">>=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000">--</span><span style="COLOR: #000000">)<br><img id=Codehighlighter1_573_669_Open_Image onclick="this.style.display='none'; Codehighlighter1_573_669_Open_Text.style.display='none'; Codehighlighter1_573_669_Closed_Image.style.display='inline'; Codehighlighter1_573_669_Closed_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_573_669_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_573_669_Closed_Text.style.display='none'; Codehighlighter1_573_669_Open_Image.style.display='inline'; Codehighlighter1_573_669_Open_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>        </span><span id=Codehighlighter1_573_669_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://www.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_573_669_Open_Text><span style="COLOR: #000000">{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            </span><span style="COLOR: #0000ff">if</span><span style="COLOR: #000000">(</span><span style="COLOR: #000000">!</span><span style="COLOR: #000000">flag[j])<br><img id=Codehighlighter1_612_659_Open_Image onclick="this.style.display='none'; Codehighlighter1_612_659_Open_Text.style.display='none'; Codehighlighter1_612_659_Closed_Image.style.display='inline'; Codehighlighter1_612_659_Closed_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_612_659_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_612_659_Closed_Text.style.display='none'; Codehighlighter1_612_659_Open_Image.style.display='inline'; Codehighlighter1_612_659_Open_Text.style.display='inline';" src="http://www.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>            </span><span id=Codehighlighter1_612_659_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://www.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_612_659_Open_Text><span style="COLOR: #000000">{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>                printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,j);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>            }</span></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>        }</span></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">\n</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>    }</span></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    system(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">PAUSE</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span></div> <br> <img src ="http://www.shnenglu.com/Uriel/aggbug/94458.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/Uriel/" target="_blank">Uriel</a> 2009-08-26 15:09 <a href="http://www.shnenglu.com/Uriel/articles/94458.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.xxxls.cn" target="_blank">日本欧美国产精品第一页久久</a>| <a href="http://www.bdgk.net.cn" target="_blank">国产伊人久久</a>| <a href="http://www.disidai.cn" target="_blank">亚洲国产精品热久久</a>| <a href="http://www.kukuoo.cn" target="_blank">久久亚洲AV永久无码精品</a>| <a href="http://www.ssui1.cn" target="_blank">性高湖久久久久久久久</a>| <a href="http://www.cn0317.cn" target="_blank">99久久99久久精品国产片</a>| <a href="http://www.4fro.cn" target="_blank">精品熟女少妇AV免费久久</a>| <a href="http://www.zheiwa.cn" target="_blank">久久天堂电影网</a>| <a href="http://www.0379f.cn" target="_blank">无码超乳爆乳中文字幕久久 </a>| <a href="http://www.liaoningluntan.cn" target="_blank">91精品国产高清久久久久久91</a>| <a href="http://www.shidaqizhong.cn" target="_blank">久久亚洲国产精品123区</a>| <a href="http://www.numakj.cn" target="_blank">久久久精品2019免费观看</a>| <a href="http://www.beidoukemao.cn" target="_blank">精品人妻伦一二三区久久</a>| <a href="http://www.hnwjzd.com.cn" target="_blank">久久久一本精品99久久精品66</a>| <a href="http://www.u6768.cn" target="_blank">久久午夜无码鲁丝片午夜精品</a>| <a href="http://www.yangrendong.com.cn" target="_blank">欧美喷潮久久久XXXXx</a>| <a href="http://www.jm1818.cn" target="_blank">一本久久免费视频</a>| <a href="http://www.danongyao.cn" target="_blank">亚洲乱亚洲乱淫久久</a>| <a href="http://www.98sr.cn" target="_blank">国产午夜福利精品久久2021</a>| <a href="http://www.chaoyuemobile.com.cn" target="_blank">久久乐国产精品亚洲综合</a>| <a href="http://www.163sms.cn" target="_blank">色偷偷888欧美精品久久久</a>| <a href="http://www.hx0451.cn" target="_blank">久久香蕉超碰97国产精品 </a>| <a href="http://www.ireboot.cn" target="_blank">国产亚洲欧美精品久久久</a>| <a href="http://www.xh68.cn" target="_blank">亚洲欧洲久久久精品</a>| <a href="http://www.lzcoxag.cn" target="_blank">精品久久人人做人人爽综合 </a>| <a href="http://www.hfko.cn" target="_blank">思思久久好好热精品国产 </a>| <a href="http://www.sd2sc.com.cn" target="_blank">东京热TOKYO综合久久精品</a>| <a href="http://www.r97n59.cn" target="_blank">99久久无色码中文字幕人妻</a>| <a href="http://www.cs556.cn" target="_blank">久久久免费观成人影院 </a>| <a href="http://www.hystech.cn" target="_blank">亚洲狠狠久久综合一区77777 </a>| <a href="http://www.xinxiang8.cn" target="_blank">久久精品国产亚洲av麻豆蜜芽</a>| <a href="http://www.hilxb.cn" target="_blank">久久久久99精品成人片牛牛影视</a>| <a href="http://www.omsf.cn" target="_blank">久久精品国产影库免费看</a>| <a href="http://www.youhezulin.cn" target="_blank">国产精品美女久久久久网</a>| <a href="http://www.gdhaojulai.cn" target="_blank">国内精品伊人久久久久av一坑</a>| <a href="http://www.homeshining.com.cn" target="_blank">中文字幕久久精品无码</a>| <a href="http://www.qiaoyishiqy6.com.cn" target="_blank">久久丫忘忧草产品</a>| <a href="http://www.rnif.cn" target="_blank">中文字幕无码免费久久</a>| <a href="http://www.xkr-bsc.cn" target="_blank">久久精品国产第一区二区三区 </a>| <a href="http://www.nba52.cn" target="_blank">精品久久久久久无码不卡</a>| <a href="http://www.028shanghai.cn" target="_blank">色偷偷88欧美精品久久久</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>