青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

coreBugZJ

此 blog 已棄。

The 11th Zhejiang University Programming Contest

    模擬題專場了,無語。。。

C
Chinese Zodiac

Time Limit: 2 Seconds      Memory Limit: 65536 KB

The Shengxiao , better known in English as the Chinese Zodiac, is a scheme that relates each year to an animal and its reputed attributes, according to a 12-year cycle. The zodiac traditionally begins with the sign of the Rat, and the twelve zodiac signs are Rat, Ox, Tiger, Rabbit, Dragon, Snake, Horse, Ram, Monkey, Rooster, Dog and Pig. The zodiac signs cycles continuously, and determines the animal or sign under which a person is born. This year (2011, more accurately Chinese Xin Mao Year -- 3 February 2011 - 22 January 2012) is the Chinese Year of the Rabbit, so the babies born in this year are said to be born under the Chinese Zodiac sign of the Rabbit.

In China, Xusui , also known as east Asian age reckoning, is used to count a person's age. Newborns start at one year old, and each passing of a Lunar New Year, rather than the birthday, adds one year to the person's age. In other words, the first year of life is counted as one instead of zero, so that a person is two years old in their second year, three years old in their third, and so on.

Given the traditional age ( Xusui ) of someone, you are requested to answer his zodiac sign ( Shengxiao ).

Input

There are multiple test cases. The first line of input is an integer T ≈ 1000 indicating the number of test cases.

Each test case contains only one positive integer y ≤ 200 -- the traditional age.

Output

For each test case, output a string -- the zodiac sign.

Sample Input

5
1
23
40
100
160

Sample Output

Rabbit
Snake
Rat
Rat
Rat

 1 #include <iostream>
 2 #include <cstdio>
 3 
 4 using namespace std;
 5 
 6 const char *shengxiao[] = 
 7 {
 8         " "
 9         "Rat""Ox""Tiger""Rabbit""Dragon""Snake"
10         "Horse""Ram""Monkey""Rooster""Dog""Pig"
11 };
12 
13 int main() {
14         int td, y, i, t;
15         scanf( "%d"&td );
16         while ( td-- > 0 ) {
17                 scanf( "%d"&y );
18                 t = 5 - y;
19                 while ( t < 1 ) {
20                         t += 12;
21                 }
22                 i = t;
23                 puts( shengxiao[ i ] );
24         }
25         return 0;
26 }
27 



D
Duck Typing

Time Limit: 2 Seconds      Memory Limit: 65536 KB

If it looks like a duck, swims like a duck, and quacks like a duck, then it probably is a duck.

When I see a bird that walks like a duck and swims like a duck and quacks like a duck, I call that bird a duck.

In computer programming with object-oriented programming languages, duck typing is a style of dynamic typing in which an object's current set of methods and properties determines the valid semantics, rather than its inheritance from a particular class or implementation of a specific interface.

Given a chunk of code, your task is to tell the function of each statement. Each statement is a line of one of the following formats:

  • begin . This is always the first statement of the code.
  • end . This is always the last statement of the code.
  • class ClassName [: Super ]. Define a new class ClassName , with its superclass being Super if specified. If ClassName has been defined or Super has not been defined before, then ignore this statement and print "oops!". Otherwise, print " class ClassName [: Super ]".
  • def ClassName . MethodName . Define a method named MethodName in class ClassName . If ClassName has never been defined, then ignore this statement and print "oops!". If this method has already been defined before, then print " redef ClassName . MethodName ". Otherwise print " def ClassName . MethodName ".
  • undef ClassName . MethodName . If this method has not been defined or the class has not been defined, then ignore this statement and print "oops!". Otherwise, print " undef ClassName . MethodName " and this method is treat as if it has never been defined from now on.
  • call ClassName . MethodName . Call the method ClassName . MethodName according the following principle. If the method ClassName . MethodName is defined, then invoke this method. If the class ClassName has superclass Super , then check its superclass recursively until the method is defined or there are no superclasses. Print the actual method invoked " invoke ActualClassName . MethodName " or ignore this statement and print "oops!".

All ClassName and MethodName are valid identifiers, namely a sequence of one or more ASCII letters, digits (these may not appear as the first character), and underscores. Both the length of the identifier and the depth of inheritance tree don't exceed 20.

Input

There are multiple test cases. The first line of input is an integer T ≈ 10 indicating the number of test cases.

Each test case is a chunk of code. There is a blank line after each test case.

Output

For each statement, output as the description says. Output a blank line after each test case.

Sample Input

3
begin
class Sub:Super
class Super
class Sub:Super
end

begin
class Class
call Class.Method
def Class.Method
call Class.Method
end

begin
class Super
class Sub:Super
def Super.Method
call Sub.Method
end

Sample Output

oops!
class Super
class Sub:Super

class Class
oops!
def Class.Method
invoke Class.Method

class Super
class Sub:Super
def Super.Method
invoke Super.Method


 1 #include <iostream>
 2 #include <cstdio>
 3 #include <map>
 4 #include <string>
 5 
 6 using namespace std;
 7 
 8 int main() {
 9         map< stringstring > father;
10         map< stringint > method;
11         map< stringint > defclass;
12         int td, i;
13         string cmd, me, fa, func;
14         cin >> td;
15         while ( td > 0 ) {
16                 cin >> cmd;
17                 if ( cmd == "begin" ) {
18                         father.clear();
19                         method.clear();
20                         defclass.clear();
21                 }
22                 else if ( cmd == "end" ) {
23                         --td;
24 //                        if ( td > 0 ) {
25                                 cout << "\n";
26 //                        }
27                 }
28                 else if ( cmd == "class" ) {
29                         cin >> me;
30                         if ( (i=me.find( ':' )) != string::npos ) {
31                                 fa = me.substr( i+1 );
32                                 me.erase( i );
33                                 if ( (defclass[me]==1|| (defclass[fa]==0) ) {
34                                         cout << "oops!\n";
35                                 }
36                                 else {
37                                         defclass[ me ] = 1;
38                                         father[ me ] = fa;
39                                         cout << "class " << me << ":" << fa << "\n";
40                                 }
41                         }
42                         else {
43                                 if ( defclass[ me ] == 1 ) {
44                                         cout << "oops!\n";
45                                 }
46                                 else {
47                                         defclass[ me ] = 1;
48                                         cout << "class " << me << "\n";
49                                 }
50                         }
51                 }
52                 else if ( cmd == "def" ) {
53                         cin >> func;
54                         me = func.substr( 0, func.find('.') );
55                         if ( defclass[me] == 0 ) {
56                                 cout << "oops!\n";
57                         }
58                         else if ( method[ func ] == 1 ) {
59                                 cout << "redef " << func << "\n";
60                         }
61                         else {
62                                 method[ func ] = 1;
63                                 cout << "def " << func << "\n";
64                         }
65                 }
66                 else if ( cmd == "undef" ) {
67                         cin >> func;
68                         me = func.substr( 0, func.find('.') );
69                         if ( (defclass[me]==0|| (method[func]==0) ) {
70                                 cout << "oops!\n";
71                         }
72                         else {
73                                 cout << "undef " << func << "\n";
74                                 method[ func ] = 0;
75                         }
76 
77                 }
78                 else if ( cmd == "call" ) {
79                         cin >> func;
80                         me = func.substr( 0, func.find('.') );
81                         func.erase( 0, func.find('.')+1 );
82                         while ( (!me.empty()) && (method[me+"."+func]==0) ) {
83                                 me = father[ me ];
84                         }
85                         if ( !me.empty() ) {
86                                 cout << "invoke " << me+"."+func << "\n";
87                         }
88                         else {
89                                 cout << "oops!\n";
90                         }
91                 }
92         }
93         return 0;
94 }
95 



G
Gaussian Prime

Time Limit: 3 Seconds      Memory Limit: 65536 KB

In number theory, a Gaussian integer is a complex number whose real and imaginary part are both integers. The Gaussian integers, with ordinary addition and multiplication of complex numbers, form an integral domain, usually written as Z[i]. The prime elements of Z[i] are also known as Gaussian primes. Gaussian integers can be uniquely factored in terms of Gaussian primes up to powers of i and rearrangements.

A Gaussian integer a + bi is a Gaussian prime if and only if either:

  • One of a, b is zero and the other is a prime number of the form 4n + 3 (with n a nonnegative integer) or its negative -(4n + 3), or
  • Both are nonzero and a2 + b2 is a prime number (which will not be of the form 4n + 3).

0 is not Gaussian prime. 1, -1, i, and -i are the units of Z[i], but not Gaussian primes. 3, 7, 11, ... are both primes and Gaussian primes. 2 is prime, but is not Gaussian prime, as 2 = i(1-i)2.

Your task is to calculate the density of Gaussian primes in the complex plane [x1, x2] × [y1, y2]. The density is defined as the number of Gaussian primes divided by the number of Gaussian integers.

Input

There are multiple test cases. The first line of input is an integer T ≈ 100 indicating the number of test cases.

Each test case consists of a line containing 4 integers -100 ≤ x1x2 ≤ 100, -100 ≤ y1y2 ≤ 100.

Output

For each test case, output the answer as an irreducible fraction.

Sample Input

3
0 0 0 0
0 0 0 10
0 3 0 3

Sample Output

0/1
2/11
7/16

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstdlib>
 4 
 5 using namespace std;
 6 
 7 void init() {
 8 }
 9 
10 int gcd( int a, int b ) {
11         if ( b == 0 ) {
12                 return a;
13         }
14         return gcd( b, a%b );
15 }
16 
17 int isPrime( int n ) {
18         int i;
19         if ( n < 2 ) {
20                 return 0;
21         }
22         for ( i = 2; i*<= n; ++i ) {
23                 if ( n % i == 0 ) {
24                         return 0;
25                 }
26         }
27         return 1;
28 }
29 
30 int isGaussPrime( int a, int b ) {
31         a = abs( a );
32         b = abs( b );
33         if ( (a==0&& (b==0) ) {
34                 return 0;
35         }
36         if ( b == 0 ) {
37                 if ( (a<3|| ((a-3)%4|| (!isPrime(a)) ) {
38                         return 0;
39                 }
40                 return 1;
41         }
42         if ( a == 0 ) {
43                 if ( (b<3|| ((b-3)%4|| (!isPrime(b)) ) {
44                         return 0;
45                 }
46                 return 1;
47         }
48         a = a*+ b*b;
49         return isPrime(a) && ( (a<3|| ((a-3)%4) );
50 }
51 
52 int main() {
53         int td, x1, x2, y1, y2, i, j, cnt, fm, fz;
54         init();
55         scanf( "%d"&td );
56         while ( td-- > 0 ) {
57                 scanf( "%d%d%d%d"&x1, &x2, &y1, &y2 );
58                 cnt = 0;
59                 for ( i = x1; i <= x2; ++i ) {
60                         for ( j = y1; j <= y2; ++j ) {
61                                 cnt += isGaussPrime( i, j );
62                         }
63                 }
64                 fm = (x2-x1+1)*(y2-y1+1);
65                 fz = cnt;
66                 i = gcd( fz, fm );
67                 fz /= i;
68                 fm /= i;
69                 printf( "%d/%d\n", fz, fm );
70         }
71         return 0;
72 }
73 



I
Identification Number

Time Limit: 3 Seconds      Memory Limit: 65536 KB      Special Judge

Mr. Wu, the inspector of the district, is really angry for a robbery happened last night. The robber escaped while Mr. Wu knows nothing about him. The only clue Mr. Wu has is a photo of the robber, which is recorded by the security camera.

Fortunately, the robber was seen by a witness in a train station, and his identity card was captured on a video camera when he was passing security check. As you know, each identity card in China has a unique identification number. Therefore Mr. Wu can easily find who the robber is by looking up the ID in computer database. But he failed, and found the number was not in the database. He guesses some digits in the identification number are misinterpreted because the picture of the robber's identity card is in bad quality.

To find the original identification number, Mr. Wu assumes that only a minimal number of characters are misinterpreted. While this assumption may be reasonable, he finds it hard for him to determine the correct number. So he turns you, a talented programmer, to help him find the correct answer.

To accomplish this task, you need to have some basic knowledge about identity cards used in China. There are two number system used for identification number, namely the first generation and the second generation. The first generation consists of a 15-digit code while the second generation consists of an 18-digit code. See following tables for details.

Number system for the first generation identity card
1 2 3 4 5 6 Y Y M M D D 8 8 8
Address code Date of Birth Order code
Number system for the second generation identity card
1 2 3 4 5 6 Y Y Y Y M M D D 8 8 8 X
Address code Date of Birth Order code Checksum

The identification number must obey the following constraints:

  1. The address code refers to the resident's location. For simplicity, here we consider any digits are legal.
  2. The Date of Birth must be a legal date. Since the robbery happened last night, we assume any date from Jan 1, 1900 to Apr 2, 2011 (inclusive) is legal, and others are illegal. For identification number in first generation card, the first 2 digits of year are omitted, and the date is considered legal if one of the two interpretations (19xx or 20xx) is legal.
  3. Order code is the code used to disambiguate people with the same date of birth and address code. We consider any digits are legal.
  4. Checksum confirms the validity of the ID number from the first 17 digits in second generation identity card. It is calculated by:
    1. Mark the identification code right-to-left a1, a2, ... , a18. a1 is the checksum digit.
    2. Calculate coefficient for each digit: Wi = 2i - 1 mod 11. For simplicity, Wi is given in the following table:
      i 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
      Wi 7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2 1
    3. Calculation of S = \sum_{i=
    4. a1 = (12 - (S mod 11)) mod 11
    5. If a1 is between 0 and 9, the checksum code is a1 itself. If a1 is 10, the checksum code is "X" (upper case).

Now given an identification number either in 15-digit format or 18-digit format, you need to output a legal identification number by changing minimal number of digits in original one.

Input

There are multiple test cases. The first line of input is an integer T ≈ 100 indicating the number of test cases.

Each test case consists of a line of identification number, in either 15-digit format or in 18-digit format. All characters are digits except the last character in an 18-digit-format code may be a capital 'X'. There will be no extra characters.

Output

For each test case, you need to output the correct identification number described above. If there are multiple solutions, any one is OK.

Sample Input

2
111111111111111111
111111111111111

Sample Output

111111191110111111
111111111111111


  1 #include <iostream>
  2 #include <cstdio>
  3 #include <cstring>
  4 
  5 using namespace std;
  6 
  7 const int monthday[] = 
  8 {
  9         0312831303130313130313031
 10 };
 11 
 12 const int wi[] = 
 13 {
 14         79105842163791058421
 15 };
 16 
 17 char id[ 100 ], ans[ 100 ], tmp[ 100 ];
 18 int y, m, d, md, ck, tp; // 0  15        1 18
 19 
 20 #define  ISR  ( (y%400==0) || ((y%100!=0)&&(y%4==0)) )
 21 
 22 int changeNum() {
 23         int i, res = 0;
 24         for ( i = 0; id[ i ]; ++i ) {
 25                 if ( id[ i ] != tmp[ i ] ) {
 26                         ++res;
 27                 }
 28         }
 29         return res;
 30 }
 31 
 32 void toTmp() {
 33         int off = 6, ty = y;
 34         strcpy( tmp, id );
 35         if ( tp == 1 ) {
 36                 off = 8;
 37                 tmp[ 6 ] = '0' + ( ty / 1000 );
 38                 ty %= 1000;
 39                 tmp[ 7 ] = '0' + ( ty / 100 );
 40         }
 41         ty %= 100;
 42         tmp[ off++ ] = '0' + ( ty / 10 );
 43         tmp[ off++ ] = '0' + ( ty % 10 );
 44         tmp[ off++ ] = '0' + ( m / 10 );
 45         tmp[ off++ ] = '0' + ( m % 10 );
 46         tmp[ off++ ] = '0' + ( d / 10 );
 47         tmp[ off++ ] = '0' + ( d % 10 );
 48         if ( tp == 1 ) {
 49                 int s = 0, i;
 50                 for ( i = 0; i < 17++i ) {
 51                         s += (tmp[i]-'0'* wi[ i ];
 52                 }
 53                 ck = ( 12 - (s%11) ) % 11;
 54                 tmp[ 17 ] = ( ( ck < 10 ) ? (ck+'0') : 'X' );
 55         }
 56 }
 57 
 58 int legal() {
 59         if ( !( (y>=1900&& (m>=1&& (d>=1) ) ) {
 60                 return 0;
 61         }
 62         if ( y > 2011 ) {
 63                 return 0;
 64         }
 65         if ( (y==2011&& (m>4) ) {
 66                 return 0;
 67         }
 68         if ( (y==2011&& (m==4&& (d>2) ) {
 69                 return 0;
 70         }
 71         return 1;
 72 }
 73 
 74 void solve() {
 75         int min = 10000, tn;
 76         for ( y = 1900; y <= 2011++y ) {
 77                 for ( m = 1; m <= 12++m ) {
 78                         md = monthday[ m ];
 79                         if ( (m==2&& (ISR) ) {
 80                                 ++md;
 81                         }
 82                         for ( d = 1; d <= md; ++d ) {
 83                                 toTmp();
 84                                 if ( legal() ) {
 85                                         tn = changeNum();
 86                                         if ( tn < min ) {
 87                                                 min = tn;
 88                                                 strcpy( ans, tmp );
 89                                         }
 90                                 }
 91                         }
 92                 }
 93         }
 94 }
 95 
 96 int main() {
 97         int td;
 98         scanf( "%d"&td );
 99         while ( td-- > 0 ) {
100                 scanf( "%s", id );
101                 if ( strlen( id ) == 15 ) {
102                         tp = 0;
103                 }
104                 else {
105                         tp = 1;
106                 }
107                 solve();
108                 puts( ans );
109         }
110         return 0;
111 }
112 



J
Judge Internal Error

Time Limit: 2 Seconds      Memory Limit: 65536 KB

The online judge system developed by Zhejiang University ACM/ICPC team (that is the system used during this contest) is designed to be robust. It can execute all kinds of user-submitted programs, including unsafe or malicious ones, and remain working and stable. However, it does report mysterious "Judge Internal Error" ("JIE" in short), occasionally.

JIE happens due to various reasons, such as crashes of special judge programs, poor network conditions, incredible large test data, extremely high system load, failures of hard disks, bugs of online judge system, cosmic radiation and so on. In our experience, real world JIE often reflects one or more problematic problems. Every time JIE happens, the corresponding problem ID is written to a special system log. Given the system log, your task is to find out the ID of the most problematic problem.

Input

The first line contains an integer T (T ≈ 10), the number of test cases. The following are test cases, separated by one blank line.

For each test case, the first line contains an integer N (1 ≤ N ≤ 1000), the size of system log. Following N lines, each line contains an integer Pi (1001 ≤ Pi ≤ 9999), which is the problem ID causing JIE.

Output

For each test case, output one integer in one line, which is the ID of the most problematic problem (that is, this ID occurs the most frequently in the log). When multiple IDs occur with a same frequency, prefer the largest ID.

Sample Input

2
4
1001
1003
1003
1002

2
1001
1003

Sample Output

1003
1003

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 
 5 using namespace std;
 6 
 7 #define  L  1009
 8 
 9 int a[ L ], n, cnt[ L ];
10 
11 int main() {
12         int td, i, j, max;
13         scanf( "%d"&td );
14         while ( td-- > 0 ) {
15                 scanf( "%d"&n );
16                 for ( i = 0; i < n; ++i ) {
17                         scanf( "%d", a+i );
18                 }
19                 sort( a, a+n );
20                 cnt[ 0 ] = 1;
21                 i = 1;
22                 for ( j = 1; j < n; ++j ) {
23                         if ( a[ j ] == a[ j - 1 ] ) {
24                                 ++cnt[ i - 1 ];
25                         }
26                         else {
27                                 a[ i ] = a[ j ];
28                                 cnt[ i ] = 1;
29                                 ++i;
30                         }
31                 }
32                 n = i;
33                 i = 0;
34                 for ( j = 1; j < n; ++j ) {
35                         // if ( (cnt[j]>cnt[i]) || ((cnt[j]==cnt[i])&&(a[j]>a[i])) ) {
36                         if ( cnt[ j ] >= cnt[ i ] ) {
37                                 i = j;
38                         }
39                 }
40                 printf( "%d\n", a[ i ] );
41         }
42         return 0;
43 }
44 



posted on 2011-04-03 18:31 coreBugZJ 閱讀(1412) 評論(0)  編輯 收藏 引用 所屬分類: ACM

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美激情1区| 国产精品日韩一区二区| 亚洲欧美日韩综合国产aⅴ| 亚洲国产另类久久久精品极度 | 亚洲啪啪91| 亚洲第一搞黄网站| 亚洲精品久久视频| 一区二区三区四区五区精品视频| 99热免费精品| 亚洲在线视频观看| 一本色道久久综合亚洲精品婷婷| …久久精品99久久香蕉国产| 亚洲肉体裸体xxxx137| 一本久久知道综合久久| 午夜精品短视频| 老司机凹凸av亚洲导航| 亚洲国产专区| 先锋影院在线亚洲| 欧美精品自拍偷拍动漫精品| 国产精品福利片| 免费中文日韩| 久久久久久久久久久久久女国产乱 | 欧美资源在线| 欧美插天视频在线播放| 国产精品毛片va一区二区三区| 国产一区二区三区久久| 日韩网站免费观看| 麻豆成人av| 亚洲午夜一区二区三区| 欧美成人免费小视频| 国产欧美精品一区二区三区介绍| 亚洲精品视频在线看| 亚洲精品国久久99热| 久久精品视频免费| 可以免费看不卡的av网站| 国产精品毛片在线| 久久国产手机看片| 久久综合久色欧美综合狠狠| 亚洲另类黄色| 久久久99久久精品女同性| 亚洲欧美三级伦理| 亚洲精品视频在线看| 欧美体内she精视频在线观看| 亚洲欧美日韩一区二区在线 | 午夜精品久久久99热福利| 国产欧美 在线欧美| 欧美h视频在线| 欧美午夜精品一区二区三区| 久久噜噜噜精品国产亚洲综合| 免费日韩av片| 欧美一区=区| 欧美日韩精品一二三区| 久久综合九色综合欧美狠狠| 国产精品久久久久久久久免费 | 亚洲午夜激情| 最近中文字幕mv在线一区二区三区四区| 日韩性生活视频| 亚洲国产高清高潮精品美女| 亚洲在线成人| 日韩午夜高潮| 美女国产一区| 久久亚洲免费| 国模套图日韩精品一区二区| 亚洲性夜色噜噜噜7777| 日韩一级网站| 欧美国产视频一区二区| 美女尤物久久精品| 激情小说亚洲一区| 久久久不卡网国产精品一区| 欧美在线视频网站| 国产精品影院在线观看| 亚洲在线观看免费| 亚洲欧美日本国产专区一区| 国产精品第三页| 亚洲免费观看在线视频| 亚洲视频电影图片偷拍一区| 欧美日韩另类视频| 亚洲午夜黄色| 久久久久久久久久久久久9999| 韩国在线视频一区| 老**午夜毛片一区二区三区| 欧美大成色www永久网站婷| 亚洲区免费影片| 欧美日韩视频在线观看一区二区三区 | 欧美综合国产| 欧美激情国产高清| 中文精品一区二区三区| 国产女人水真多18毛片18精品视频| 亚洲男人的天堂在线aⅴ视频| 久久美女性网| 亚洲视频在线二区| 国产精品欧美久久| 久久久久久久久久久一区| 亚洲国产一成人久久精品| 亚洲女爱视频在线| 亚洲专区在线| 国产精品福利影院| 久久乐国产精品| 一区二区三区免费观看| 久久九九精品99国产精品| 亚洲美女av网站| 韩曰欧美视频免费观看| 欧美日韩午夜视频在线观看| 久久精品日产第一区二区| 亚洲精品一区二区在线观看| 久久精品人人做人人爽| 在线视频欧美日韩| 亚洲国产精品日韩| 国产一区二区三区在线免费观看 | 亚洲永久免费| 国产原创一区二区| 欧美激情黄色片| 午夜欧美大片免费观看| 欧美国内亚洲| 午夜精品久久久久久久99热浪潮| 国产一区自拍视频| 欧美三日本三级三级在线播放| 亚洲女同精品视频| 欧美成人精品三级在线观看 | 久久久久久电影| 亚洲福利在线观看| 欧美亚洲免费| 日韩亚洲国产精品| 国产在线拍揄自揄视频不卡99| 农村妇女精品| 欧美中文在线视频| 日韩亚洲欧美综合| 欧美国产在线视频| 久久综合999| 欧美在线观看视频一区二区三区| 亚洲国产天堂网精品网站| 国产精品一区二区三区四区五区| 麻豆91精品91久久久的内涵| 午夜精品一区二区在线观看| 99在线观看免费视频精品观看| 欧美福利一区| 免费成人高清在线视频| 久久爱www| 欧美影院精品一区| 欧美一区成人| 欧美一二三视频| 午夜精品久久久久久久99樱桃 | 免费欧美在线视频| 欧美一区二区三区视频免费播放| 亚洲美女av黄| 一区二区三区国产精华| 午夜精品久久久久久| 久久久亚洲欧洲日产国码αv| 久久视频一区二区| 欧美一级视频一区二区| 久久夜色精品国产噜噜av| 欧美久久99| 好吊妞**欧美| 亚洲欧美日韩精品久久| 久久久女女女女999久久| 欧美大片在线看| 亚洲人成网站777色婷婷| 99热这里只有精品8| 欧美尤物一区| 欧美日韩一区二区精品| 国产视频在线观看一区二区三区 | 韩日成人在线| 1000部精品久久久久久久久| 亚洲精品综合久久中文字幕| 亚洲欧美电影在线观看| 欧美丰满高潮xxxx喷水动漫| 亚洲在线观看免费视频| 老牛国产精品一区的观看方式| 欧美母乳在线| 在线观看亚洲a| 欧美一区二区三区男人的天堂 | 国产自产在线视频一区| 亚洲天堂av综合网| 欧美1级日本1级| 欧美一级片在线播放| 国产精品国产三级国产专播品爱网| 悠悠资源网亚洲青| 久久se精品一区二区| 一本色道久久综合狠狠躁篇的优点 | 久久精品亚洲精品国产欧美kt∨| 91久久精品一区| 久久九九热re6这里有精品 | 国产精品久久久久久久9999| 一区久久精品| 免费在线观看成人av| 国产精品99久久99久久久二8 | 欧美日韩裸体免费视频| 91久久精品久久国产性色也91| 久久久夜精品| 久久最新视频| 日韩一区二区久久| 一区二区三区精品国产| 国产精品久久久久久妇女6080| 亚洲性夜色噜噜噜7777| 亚洲夜晚福利在线观看| 国产视频精品xxxx| 免费观看久久久4p| 欧美激情视频网站| 午夜一区不卡| 久久中文字幕导航|