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

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 閱讀(1414) 評論(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>
            国内精品久久久久影院优 | 久久av老司机精品网站导航| 亚洲伦理久久| 国产精品久久久久免费a∨| 亚洲欧美视频| 性色av香蕉一区二区| 狠狠色狠狠色综合系列| 美女久久网站| 欧美日本免费| 亚洲欧美在线免费| 久久精品最新地址| 99国产精品一区| 亚洲欧美日本日韩| 国产精品视频xxx| 欧美专区一区二区三区| 欧美一区二区三区的| 亚洲成人原创| 一区二区三区产品免费精品久久75| 国产精品美女视频网站| 久久激情五月丁香伊人| 麻豆精品网站| 亚洲欧美国产高清| 久久久久国产一区二区三区| 日韩视频精品| 久久精品国产亚洲5555| 一本一本a久久| 久久爱www久久做| 亚洲一品av免费观看| 久久精品国产2020观看福利| 一区二区激情| 鲁鲁狠狠狠7777一区二区| 亚洲欧美美女| 欧美精品不卡| 六月丁香综合| 国产婷婷97碰碰久久人人蜜臀| 亚洲国产va精品久久久不卡综合| 欧美午夜精品伦理| 欧美激情91| 国产一区二区三区免费在线观看| 亚洲精品欧洲精品| 91久久精品一区| 久久成人免费电影| 午夜精品久久久久| 欧美日本韩国| 亚洲国产小视频| 在线观看日韩| 欧美一区二区精品| 欧美在线观看视频一区二区三区| 欧美日韩国产123区| 欧美激情国产日韩精品一区18| 国产区精品在线观看| 亚洲天堂av电影| 中日韩高清电影网| 欧美激情91| 欧美激情四色| 亚洲国产精品va在线观看黑人| 久久不见久久见免费视频1| 性刺激综合网| 国产精品资源| 亚洲欧美日韩在线综合| 午夜视频一区在线观看| 欧美午夜精品久久久久久孕妇| 日韩亚洲欧美在线观看| 99视频精品全部免费在线| 欧美肥婆bbw| 亚洲国产视频a| 99视频国产精品免费观看| 欧美福利电影网| 999在线观看精品免费不卡网站| 亚洲美女免费视频| 亚洲国产天堂网精品网站| 亚洲欧美影院| 久久九九国产| 国内精品久久久| 久久国产精品色婷婷| 久久伊人亚洲| 亚洲国内精品在线| 欧美精品一区二区三| 亚洲美女色禁图| 午夜在线电影亚洲一区| 国产伦精品一区二区三区在线观看 | 欧美日韩亚洲国产一区| 亚洲九九九在线观看| 亚洲影视在线播放| 国产精品羞羞答答| 久久久久久亚洲精品杨幂换脸| 久久资源av| 99视频精品免费观看| 欧美麻豆久久久久久中文| 久久青草久久| 亚洲精品视频免费观看| 欧美日韩精品中文字幕| 亚洲私拍自拍| 欧美成人精品一区二区三区| 日韩午夜剧场| 国产日韩精品久久| 欧美精品大片| 香蕉亚洲视频| 亚洲国产精品久久精品怡红院| 在线综合+亚洲+欧美中文字幕| 国产欧美日韩精品a在线观看| 狼狼综合久久久久综合网| 日韩视频免费观看| 美国十次成人| 亚洲欧美另类中文字幕| 亚洲高清三级视频| 国产精品一区二区三区四区| 久久综合久久综合久久综合| 一区二区三区久久网| 免费在线日韩av| 亚洲欧美日韩在线| 99国产精品99久久久久久| 亚洲午夜电影| 欧美 日韩 国产精品免费观看| 亚洲国产另类久久精品| 亚洲欧美日本国产专区一区| 激情成人综合| 国产麻豆日韩| 欧美日韩在线综合| 免费观看国产成人| 久久国产精品一区二区三区四区 | 亚洲精品偷拍| 在线观看成人av| 国产精品久久久久久久久免费 | 欧美高清在线一区二区| 性色av一区二区三区在线观看 | 国产一区二区三区在线免费观看 | 亚洲欧洲午夜| 国模精品一区二区三区色天香| 欧美精品在欧美一区二区少妇| 久久精品一本| 欧美综合二区| 午夜在线精品| 亚洲欧美激情诱惑| 一区二区三区高清| 亚洲精品影院在线观看| 亚洲第一精品久久忘忧草社区| 久久爱www久久做| 性色av一区二区三区在线观看| 亚洲午夜一区二区| 亚洲一区国产| 亚洲午夜精品网| 亚洲无线一线二线三线区别av| 亚洲精品免费看| 日韩视频一区二区三区在线播放免费观看 | 亚洲午夜高清视频| 99在线热播精品免费99热| 最近看过的日韩成人| 亚洲大片av| 亚洲精选视频在线| 99国产精品视频免费观看| 亚洲精品中文字幕在线观看| 亚洲精品视频一区二区三区| 亚洲精品一二区| 亚洲一级免费视频| 午夜久久99| 久久天天躁夜夜躁狠狠躁2022| 久久久久久九九九九| 美女日韩欧美| 欧美日韩午夜视频在线观看| 亚洲大片av| 欧美日韩国产精品一区二区亚洲| 久久久久高清| 欧美成人免费播放| 欧美精品精品一区| 国产精品成人观看视频免费| 国产精品女主播| 黑人巨大精品欧美一区二区| 亚洲第一福利在线观看| 日韩午夜在线播放| 性欧美长视频| 欧美黄色一级视频| 一区二区三区四区在线| 欧美在线国产精品| 欧美成人自拍| 国产日韩一区二区三区在线| 在线观看中文字幕不卡| 亚洲深夜福利网站| 久久伊人免费视频| 日韩视频在线观看一区二区| 欧美一区二区三区视频免费播放 | 久久久.com| 亚洲经典视频在线观看| 亚洲一区二区三区欧美| 麻豆久久精品| 久久久成人精品| 欧美日韩亚洲国产精品| 好看的日韩视频| 亚洲免费伊人电影在线观看av| 免费久久精品视频| 亚洲综合成人在线| 欧美国产三级| 国模精品一区二区三区色天香| 一本色道久久88综合亚洲精品ⅰ | 亚洲电影av在线| 欧美一级一区| 国产精品video| 999在线观看精品免费不卡网站| 欧美影院成人| 亚洲视频 欧洲视频|