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

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>
            亚洲综合第一| 欧美在线亚洲一区| 国产精品www994| 欧美日本一区| 欧美国产亚洲另类动漫| 麻豆精品在线播放| 美女精品一区| 欧美日韩p片| 国产精品区二区三区日本| 国产精品国产福利国产秒拍| 国产精品第2页| 国产日韩欧美一区二区三区四区| 国产午夜精品久久久久久久| 黄色成人免费观看| 亚洲日韩欧美一区二区在线| 亚洲视频免费看| 欧美在线国产| 欧美国产日韩亚洲一区| 亚洲伦理在线免费看| 欧美电影免费观看大全| 亚洲伦理中文字幕| 性欧美激情精品| 久久久国产精品一区二区中文 | 亚洲黄色影院| 亚洲免费福利视频| 亚洲欧美日韩成人| 欧美成年人视频网站| 国产精品久久久久久久久久久久 | 亚洲视频999| 久久久亚洲国产天美传媒修理工| 亚洲电影免费观看高清完整版| 一区二区毛片| 免费中文字幕日韩欧美| 国产精品尤物| 一区二区三区av| 久久久久综合网| 亚洲深夜福利视频| 久久久蜜桃精品| 国产精品系列在线| 一本一本久久a久久精品牛牛影视| 久久久久一区二区三区四区| 中日韩男男gay无套| 欧美fxxxxxx另类| 精久久久久久久久久久| 性欧美xxxx大乳国产app| 亚洲黄色免费电影| 久久美女性网| 一区二区在线观看视频| 久久精品国产99| 亚洲欧美日本日韩| 国产精品久久久久久久久搜平片| 99热精品在线| 亚洲国产另类久久精品| 久久久久久久久久久成人| 国产精品一级久久久| 亚洲影院污污.| 一区二区三区精品视频在线观看| 欧美精品一区二区三区很污很色的| 亚洲高清精品中出| 欧美xart系列高清| 久久先锋影音av| 在线观看成人一级片| 两个人的视频www国产精品| 先锋资源久久| 国产亚洲精品久久飘花| 欧美亚洲综合网| 亚洲欧美美女| 国语对白精品一区二区| 久久久久久久久岛国免费| 欧美一二区视频| 国产一区二区三区精品欧美日韩一区二区三区| 午夜亚洲福利| 香蕉成人久久| 亚洲欧美日韩中文视频| 日韩系列欧美系列| 亚洲福利视频二区| 欧美国产第一页| 在线视频亚洲| 亚洲欧美日韩国产另类专区| 国产视频一区在线观看一区免费| 久久久福利视频| 免费成人在线观看视频| 中日韩午夜理伦电影免费| 亚洲图片欧洲图片av| 国模精品一区二区三区色天香| 免费观看日韩av| 欧美乱大交xxxxx| 午夜精品视频网站| 久久精品99国产精品酒店日本| 亚洲国产日韩欧美在线99| 亚洲另类春色国产| 国产欧美精品| 亚洲第一在线| 国产免费成人| 亚洲国产女人aaa毛片在线| 欧美日韩在线高清| 快射av在线播放一区| 欧美黑人多人双交| 久久精品官网| 欧美日韩免费在线| 麻豆精品国产91久久久久久| 欧美日韩一二三区| 久久综合亚洲社区| 欧美日韩视频专区在线播放 | 亚洲另类一区二区| 亚洲欧美电影在线观看| 亚洲经典一区| 欧美一区二区高清| 一本在线高清不卡dvd | 快射av在线播放一区| 亚洲图片激情小说| 欧美+日本+国产+在线a∨观看| 亚洲欧美日韩国产精品| 嫩草成人www欧美| 欧美在线观看一二区| 欧美日韩精品系列| 欧美黑人在线播放| 极品少妇一区二区三区| 亚洲一区3d动漫同人无遮挡| 亚洲精品网址在线观看| 久久―日本道色综合久久| 亚洲欧美一区二区精品久久久| 欧美电影打屁股sp| 久久综合婷婷| 国内久久精品视频| 亚洲综合成人婷婷小说| 亚洲一区二区三区777| 欧美金8天国| 亚洲精华国产欧美| 亚洲国产成人精品视频| 久久国产精品99精品国产| 午夜精品理论片| 男女精品网站| 亚洲自拍16p| 99这里只有精品| 欧美高清视频一区二区三区在线观看| 久久永久免费| 精品成人一区二区三区| 欧美一区午夜精品| 久久国产精品久久久久久久久久| 欧美午夜视频在线| av成人免费在线观看| 国产精品99久久久久久久vr| 欧美日韩hd| 一本色道精品久久一区二区三区| av72成人在线| 国产精品theporn| 亚洲一区二区三区成人在线视频精品| 亚洲一区视频在线| 国产精品视频xxxx| 性欧美精品高清| 久久综合久久综合九色| 在线免费精品视频| 欧美成人免费大片| 日韩视频一区二区三区| 亚洲欧美亚洲| 一区免费在线| 欧美黑人在线观看| 9色国产精品| 久久动漫亚洲| 亚洲国产欧美一区| 欧美日韩国产欧美日美国产精品| 一本久久青青| 久久久久国产精品www| 在线成人激情视频| 欧美精品一区二区三区蜜桃| 亚洲一二三区视频在线观看| 久久都是精品| 亚洲精品社区| 国产美女扒开尿口久久久| 久久伊人一区二区| 日韩一级精品| 久久久久久久综合狠狠综合| 亚洲精品美女在线观看播放| 国产精品久久久一区二区| 久久久999| 一区二区精品在线| 久久综合伊人77777蜜臀| 99视频精品在线| 狠狠狠色丁香婷婷综合激情| 欧美精品在线播放| 欧美一级片一区| 亚洲精品男同| 久久青草久久| 亚洲欧美中文日韩v在线观看| 精品成人一区二区| 国产精品国产馆在线真实露脸| 久久久美女艺术照精彩视频福利播放| 亚洲日本电影在线| 久久香蕉国产线看观看网| 在线亚洲精品福利网址导航| 黄色一区三区| 国产伦理精品不卡| 欧美日韩免费在线观看| 免费不卡在线观看av| 欧美一区亚洲| 亚洲欧美国产精品专区久久| 日韩视频二区| 最新日韩在线| 亚洲国产精品成人一区二区|