<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      缺省源

      newest
      set nu
      set sw=4 ts=4 sts=4
      set cin
      set mouse=a
      set so=10
      set sc
      hi cError cterm=NONE ctermbg=415
       
      func L(a)
      	return ":w | !".getline(a:a)
      endfunc
       
      map <c-z> <esc>:w<cr>
      map <F6> <esc>:exec L(2)<cr>
      map <F7> <esc>:exec L(3)<cr>
      map <F8> <esc>:exec L(4)<cr>
       
      imap <c-z> <esc>:w<cr>
      imap <F6> <esc>:exec L(2)<cr>
      imap <F7> <esc>:exec L(3)<cr>
      imap <F8> <esc>:exec L(4)<cr>
      
      /*
      ulimit -s 1024000 && clear && g++ % -o %< -O2 -std=c++14 -DLOCAL -Wall -Wextra && ulimit -v 128000 && ./%<
      ulimit -s 1024000 && clear && g++ % -o %< -O2 -std=c++14 -DLOCAL -Wall -Wextra -fsanitize=address,undefined -g && ./%<
      echo && cat out.out && echo
      */
      #include <bits/stdc++.h>
      using namespace std;
      using llt = long long;
      using llf = long double;
      using ull = unsigned long long;
      #define endl '\n'
      #ifdef LOCAL
      FILE *InFile = freopen("in.in", "r", stdin), *OutFile = freopen("out.out", "w", stdout);
      __attribute__((destructor)) void End_Put(){
      	cerr << "\nTime:       " << clock() / 1000000. << "s\n";
      	assert(!system("grep VmPeak /proc/$PPID/status 1>&2"));
      }
      #endif
       
      int main(){
      	ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
      	
      }
      
      : '
      clear && bash dp.bash
      '
      while ./rnd && ./1 && ./std && diff out.out ans.ans -Z && let i+=1; do echo $i; done
      
      正常使用

      可以把 bashrc 中

      if [ "$color_prompt" = yes ]; then
          PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' # 將\w 改成 \W 大寫字母W
      else
          PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' # \W
      fi
      

      其中的 \w 改成 \W 來折疊目錄。

      折疊后可以用 pwd 查看當前目錄。

      .vimrc

      set nu
      set sw=4 ts=4 sts=4
      set mouse=a
      set cin
      set so=10
      set sc
      hi cError cterm=NONE ctermbg=415
      
      func F6()
      	let If = getline(2)
      	let Of = getline(3)
      	return "w | !clear && ulimit -s unlimited && g++ % -o %< -std=c++14 -O2 -DLOCAL -Wall -Wextra && time ./%< < ".If." > ".Of." && size %<"
      endfunc
      func F7()
      	let If = getline(2)
      	let Of = getline(3)
      	return "w | !clear && ulimit -s unlimited && g++ % -o %< -std=c++14 -O2 -fsanitize=address,undefined -g -DLOCAL -Wall -Wextra && time ./%< < ".If." > ".Of." && size %<"
      endfunc
      func F8()
      	let Of = getline(3)
      	return "!echo && cat ".Of." && echo"
      endfunc
      
      map <F6> <Esc>:exec F6()<Cr>
      map <F7> <Esc>:exec F7()<Cr>
      map <F8> <Esc>:exec F8()<Cr>
      map <F9> <Esc>:w<Cr> <Esc>:!gedit %<Cr>
      map <c-z> <Esc>:w<Cr>
      map <c-p> <Esc>"0p<Cr>
      
      imap <F6> <Esc>:exec F6()<Cr>
      imap <F7> <Esc>:exec F7()<Cr>
      imap <F8> <Esc>:exec F8()<Cr>
      imap <F9> <Esc>:w<Cr> <Esc>:!gedit %<Cr>
      imap <c-z> <Esc>:w<Cr>
      

      .gdbinit(一般不用,只是記錄)

      set print pretty on
      define P
          set $cnt = 0
          while $cnt < $arg1
              p $arg0[$cnt][0]@$arg2
              set $cnt = $cnt + 1
          end
      end
      define D
          set $arg1 = ($arg0 *)malloc(sizeof($arg0))
      end
      

      tpl.cpp

      /* Local File
      in_out/in.in
      in_out/out.out
      */
      #include <bits/stdc++.h>
      using namespace std;
      using llt = long long;
      using ull = unsigned long long;
      using llf = long double;
      #define endl '\n'
      #ifndef LOCAL
      #undef assert
      #define assert 0 &&
      #define cerr 0 && cerr
      FILE *InFile = freopen("file.in", "r", stdin), *OutFile = freopen("file.out", "w", stdout);
      #endif
      
      int main(){
      	ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
      
      }
      

      c++ 版

      /* Local File
      in_out/in.in
      in_out/out.out
      */
      #include <bits/stdc++.h>
      using namespace std;
      using llt = long long;
      using ull = unsigned long long;
      using llf = long double;
      #define endl '\n'
      #ifndef LOCAL
      #undef assert
      #define assert 0 &&
      #define cerr 0 && cerr
      #endif
      
      int main(){
      	ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
      
      }
      

      json 版

      {
      	"#include": {
      		"prefix": "#include",
      		"body": [
      			"#include<bits/stdc++.h>",
      			"using namespace std;",
      			"using llt=long long;",
      			"using llf=long double;",
      			"using ull=unsigned long long;",
      			"#define endl '\\n'",
      			"#ifdef LOCAL",
      			"\tFILE *InFile=freopen(\"in_out/in.in\",\"r\",stdin),*OutFile=freopen(\"in_out/out.out\",\"w\",stdout);",
      			"#else",
      			"\tFILE *InFile=stdin,*OutFile=stdout;",
      			"#endif",
      			"",
      			"int main(){",
      			"\tios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);",
      			"\t$0",
      			"}",
      		],
      	}
      }
      

      簡潔的多線程對拍,編譯時記得加 -pthread

      #include <bits/stdc++.h>
      using namespace std;
      int S(const string &s){ return system(s.c_str()); }
      const int T = 20,N = 50;
      future<void> pt[T];
       
      void Run(int id){
      	string p = " data/" + to_string(id), i = p + ".in ", o = p + ".out ", a = p + ".ans ", d = p + ".diff ";
      	for(int k = 1; k <= N; ++k)
      		if(S("./rnd > " + i + " && ./1 < " + i + " > " + o + " && ./std < " + i + " > " + a))
      			return cout << id << " Re" << endl, void();
      		else if(S("diff " + o + a + " -Z > " + d))
      			return cout << id << " Wa" << endl, void();
      	S("rm -f" + i + "; rm -f" + o + "; rm -f" + a);
      }
      int main(){
      	assert(!S("g++ 1.cpp -o 1 -O2 -std=c++14"));
      	assert(!S("g++ std.cpp -o std -O2 -std=c++14"));
      	assert(!S("g++ rnd.cpp -o rnd -O2 -std=c++14"));
      	assert(!S("cd data && rm -rf *"));
      	for(int i = 0; i < T; ++i) pt[i] = async(Run, i);
      }
      

      設置:

      在 settings.json 中寫入:

      {
      	"editor.fontSize": 15,
      	"files.autoSave": "afterDelay",
      	"files.autoSaveDelay": 10,
      	"editor.cursorSmoothCaretAnimation": "on",
      	"workbench.list.smoothScrolling": true,
      	"editor.smoothScrolling": true,
      	"terminal.integrated.smoothScrolling": true,
      	"editor.cursorBlinking": "smooth",
      	"editor.cursorStyle": "underline",
      	"editor.insertSpaces": false,
      	"[dockercompose]": {"editor.tabSize": 4, "editor.insertSpaces": false},
      	"[yaml]": {"editor.tabSize": 4, "editor.insertSpaces": false},
      	"[makefile]": {"editor.tabSize": 4, "editor.insertSpaces": false},
      	"editor.detectIndentation": false,
      	"editor.comments.insertSpace": false
      }
      
      {
      	"editor.fontSize": 15,
      	"files.autoSave": "afterDelay",
      	"files.autoSaveDelay": 10,
      	"editor.cursorSmoothCaretAnimation": "on",
      	"workbench.list.smoothScrolling": true,
      	"editor.smoothScrolling": true,
      	"terminal.integrated.smoothScrolling": true,
      	"editor.cursorBlinking": "smooth",
      	"editor.cursorStyle": "underline",
      	"editor.fontFamily": "'Jetbrains Mono', 'monospace', monospace",
      	"editor.fontLigatures": true,
      	"C_Cpp.clang_format_style": "{BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Attach, AllowShortIfStatementsOnASingleLine: true, IndentCaseLabels: true, ColumnLimit: 0, AccessModifierOffset: -4, NamespaceIndentation: All, FixNamespaceComments: false ,AllowShortCaseLabelsOnASingleLine: true,AllowShortLoopsOnASingleLine: true,AllowShortBlocksOnASingleLine: true}",
      	"editor.insertSpaces": false,
      	"[dockercompose]": {"editor.tabSize": 4, "editor.insertSpaces": false},
      	"[yaml]": {"editor.tabSize": 4, "editor.insertSpaces": false},
      	"[makefile]": {"editor.tabSize": 4, "editor.insertSpaces": false},
      	"C_Cpp.errorSquiggles": "disabled",
      	"editor.detectIndentation": false,
      	"editor.comments.insertSpace": false
      }
      

      字體下載

      插件下載

      5k's


      舊的(更多功能也更長):

      #include<bits/stdc++.h>
      using namespace std;
      using llt=long long;
      using llf=long double;
      using ull=unsigned long long;
      #define For(i,a,b,c) for(int i=(a);i<=(b);i+=(c))
      #define For_(i,a,b,c) for(int i=(a);i>=(b);i-=(c))
      #define For_it(i,a,b) for(auto i=(a);i!=(b);++i)
      namespace Fast_IO{
      #ifdef ONLINE_JUDGE
          FILE *Fin(stdin), *Fout(stdout);
      #else
          FILE *Fin(fopen("in_out/in.in","r")), *Fout(fopen("in_out/out.out","w"));
      #endif // File
      #ifdef USE_C_PUT
          #define Debug fwrite(buf,1,p,fp),p=0
          #define printf(s,args...) fprintf(Fast_IO::Fout,s,##args)
          #define puts(a) fputs(a,Fast_IO::Fout)
      #else
          #define Debug
      #endif // C_output
          class qistream{
          private: 
              static constexpr size_t SIZE=1<<20,BLOCK=64; FILE *fp; char buf[SIZE]; int p; bool End;
              void flush(){if(p+BLOCK>=SIZE) memmove(buf,buf+p,SIZE-p),fread(buf+SIZE-p,1,p,fp),p=0;}
              char getch(){flush(); return buf[p++];} qistream &Set_End(){return End=0,*this;}
          public:
              qistream(FILE *_fp=stdin):End(1),fp(_fp),p(0){fread(buf+p,1,SIZE-p,fp);}
              qistream &operator>>(char &str){str=getch(); while(isspace(str))str=getch(); return str<=0?Set_End():*this;} 
              template<class T>
              typename enable_if<is_integral<T>::value|is_same<T,__int128_t>::value,qistream>::type &operator>>(T &x){
                  x=0; flush(); bool flag=false; for(;!isdigit(buf[p]);++p){if(buf[p]<=0) return Set_End(); flag=buf[p]=='-';}
                  for(;isdigit(buf[p]);++p) x=x*10+buf[p]-'0'; x=flag?-x:x; return*this;
              } template <class T> typename enable_if<is_floating_point<T>::value,qistream>::type &operator>>(T &x){
                  x=0; flush(); T unit = 1.0; bool flag=false;
                  for(;!isdigit(buf[p]);++p){if(buf[p]<=0) return Set_End(); flag=buf[p]=='-';}
                  for(;isdigit(buf[p]);++p) x=x*10+buf[p]-'0';
                  if (buf[p]=='.') for(++p;isdigit(buf[p]);++p) x+=(unit*=0.1)*(buf[p]-'0'); x=flag?-x:x; return *this;
              } qistream &operator>>(char *str){
                  char ch=getch(); while(ch<=' '){if(ch<=0) return Set_End(); ch=getch();}
                  int i; for(i=0;ch>' ';++i,ch=getch()) str[i]=ch; str[i]='\0'; return*this;
              } qistream &operator>>(string& str){
                  str.clear(); char ch=getch(); while(ch<=' '){if(ch<=0) return Set_End(); ch=getch();}
                  while(ch>' ') str.push_back(ch),ch=getch(); return*this;
              } operator bool(){return End;}
              friend qistream &getline(qistream& in,string& s){
                  s.clear(); char c=in.getch(); if(c<=0) return in.Set_End();
                  while(c!='\n'&&c>0) s.push_back(c),c=in.getch(); return in;
              }
          }cin(Fin);
          class qostream{
              static constexpr size_t SIZE=1<<20,BLOCK=64,FLSIZE=64; FILE *fp; char buf[SIZE]; int p;
              char flbuf[FLSIZE]; int prec; unsigned long long flen;
              void flush(){if(p+BLOCK>=SIZE) fwrite(buf,1,p,fp),p=0;} void putch(const char& ch){flush();buf[p++]=ch;}
          public:
              void Set_Persicion(const size_t& x){prec=x;flen=(unsigned long long)(pow(10,x));}
              qostream(FILE *_fp=stdout,const size_t& p=6):fp(_fp),p(0){Set_Persicion(p);} ~qostream(){fwrite(buf, 1, p, fp);}
              template<class T>
              typename enable_if<is_integral<T>::value|is_same<T,__int128_t>::value,qostream>::type &operator<<(T x){
                  int len=0; flush(); x<0?(x=-x,buf[p++]='-'):0; do buf[p+len]=x%10+'0',x/=10,++len; while(x);
                  for(int i=0,j=len-1;i<j;++i,--j) swap(buf[p+i],buf[p+j]); p+=len; Debug; return*this;
              } template<class T> typename enable_if<is_floating_point<T>::value,qostream>::type &operator<<(T x){
                  int len=0; flush(); x<0?(x=-x,buf[p++]='-'):0; x*=flen; unsigned long long ret=x;
                  if(x-ret>=0.4999999999) ++ret; if(ret) do flbuf[len++]=ret%10+'0',ret/=10; while(ret);
                  if(len>prec){do buf[p++]=flbuf[--len]; while(len>prec); buf[p++]='.';} else{buf[p++]='0',buf[p++]='.';
                  for(size_t i=prec-len;i--;) buf[p++]='0';} do buf[p++]=flbuf[--len]; while(len); Debug; return*this;
              }
              qostream &operator<<(const char& x){putch(x); Debug; return*this;}
              qostream &operator<<(const char *str){while(*str) putch(*str++); Debug; return*this;}
              qostream &operator<<(const string& str){return *this<<str.c_str();}
          }cout(Fout);
      #define cin Fast_IO::cin
      #define cout Fast_IO::cout
      #define endl '\n'
      }
      namespace exIO{
          bool read(char* s){return bool(cin>>s);} void write(char* s){cout<<s;}
          template<class T> bool read(T& x){return bool(cin>>x);} template<class T> void write(T x){cout<<x;}
          template<class T,class... Args> bool read(T& x,Args&... args){return bool(read(x)|read(args...));}
          template<class T=int> T read(){T a; read(a); return a;}
          template<class T> void Write(T x){write(x),cout<<' ';}
          void Write(char c){write(c);if(c!='\n') cout<<' ';}
          void Write(char *c){write(c);if(c[strlen(c)-1]!='\n') cout<<' ';}
          void Write(string &c){write(c);if(c[c.size()-1]!='\n') cout<<' ';}
          void Write(const char *c){write(c);if(c[strlen(c)-1]!='\n') cout<<' ';}
          template<class T,class... Args> void write(T x,Args... args){write(x);write(args...);}
          template<class T,class... Args> void Write(T x,Args... args){Write(x);Write(args...);}
      } using namespace exIO;
      
      int main(){
          
      }
      

      json 版

      {
      	"#include": {
      		"prefix": "#include",
      		"body": [
      			"#include<bits/stdc++.h>",
      			"using namespace std;",
      			"using llt=long long;",
      			"using llf=long double;",
      			"using ull=unsigned long long;",
      			"#define Ct const",
      			"#define For(i,a,b,c) for(int i=(a);i<=(b);i+=(c))",
      			"#define For_(i,a,b,c) for(int i=(a);i>=(b);i-=(c))",
      			"#define For_it(i,a,b) for(auto i=(a);i!=(b);++i)",
      			"namespace Fast_IO{",
      			"#ifdef ONLINE_JUDGE",
      			"\tFILE *Fin(stdin), *Fout(stdout);",
      			"#else",
      			"\tFILE *Fin(fopen(\"in_out/in.in\",\"r\")), *Fout(fopen(\"in_out/out.out\",\"w\"));",
      			"#endif // File",
      			"#ifdef USE_C_PUT",
      			"\t#define Debug fwrite(buf,1,p,fp),p=0",
      			"\t#define printf(s,args...) fprintf(Fast_IO::Fout,s,##args)",
      			"\t#define puts(a) fputs(a,Fast_IO::Fout)",
      			"#else",
      			"\t#define Debug",
      			"#endif // C_output",
      			"\tclass qistream{",
      			"\tprivate: ",
      			"\t\tstatic constexpr size_t SIZE=1<<20,BLOCK=64; FILE *fp; char buf[SIZE]; int p; bool End;",
      			"\t\tvoid flush(){if(p+BLOCK>=SIZE) memmove(buf,buf+p,SIZE-p),fread(buf+SIZE-p,1,p,fp),p=0;}",
      			"\t\tchar getch(){flush(); return buf[p++];} qistream &Set_End(){return End=0,*this;}",
      			"\tpublic:",
      			"\t\tqistream(FILE *_fp=stdin):End(1),fp(_fp),p(0){fread(buf+p,1,SIZE-p,fp);}",
      			"\t\tqistream &operator>>(char &str){str=getch(); while(isspace(str))str=getch(); return str<=0?Set_End():*this;} ",
      			"\t\ttemplate<class T>",
      			"\t\ttypename enable_if<is_integral<T>::value|is_same<T,__int128_t>::value,qistream>::type &operator>>(T &x){",
      			"\t\t\tx=0; flush(); bool flag=false; for(;!isdigit(buf[p]);++p){if(buf[p]<=0) return Set_End(); flag=buf[p]=='-';}",
      			"\t\t\tfor(;isdigit(buf[p]);++p) x=x*10+buf[p]-'0'; x=flag?-x:x; return*this;",
      			"\t\t} template <class T> typename enable_if<is_floating_point<T>::value,qistream>::type &operator>>(T &x){",
      			"\t\t\tx=0; flush(); T unit = 1.0; bool flag=false;",
      			"\t\t\tfor(;!isdigit(buf[p]);++p){if(buf[p]<=0) return Set_End(); flag=buf[p]=='-';}",
      			"\t\t\tfor(;isdigit(buf[p]);++p) x=x*10+buf[p]-'0';",
      			"\t\t\tif (buf[p]=='.') for(++p;isdigit(buf[p]);++p) x+=(unit*=0.1)*(buf[p]-'0'); x=flag?-x:x; return *this;",
      			"\t\t} qistream &operator>>(char *str){",
      			"\t\t\tchar ch=getch(); while(ch<=' '){if(ch<=0) return Set_End(); ch=getch();}",
      			"\t\t\tint i; for(i=0;ch>' ';++i,ch=getch()) str[i]=ch; str[i]='\\0'; return*this;",
      			"\t\t} qistream &operator>>(string& str){",
      			"\t\t\tstr.clear(); char ch=getch(); while(ch<=' '){if(ch<=0) return Set_End(); ch=getch();}",
      			"\t\t\twhile(ch>' ') str.push_back(ch),ch=getch(); return*this;",
      			"\t\t} operator bool(){return End;}",
      			"\t\tfriend qistream &getline(qistream& in,string& s){",
      			"\t\t\ts.clear(); char c=in.getch(); if(c<=0) return in.Set_End();",
      			"\t\t\twhile(c!='\\n'&&c>0) s.push_back(c),c=in.getch(); return in;",
      			"\t\t}",
      			"\t}cin(Fin);",
      			"\tclass qostream{",
      			"\t\tstatic constexpr size_t SIZE=1<<20,BLOCK=64,FLSIZE=64; FILE *fp; char buf[SIZE]; int p;",
      			"\t\tchar flbuf[FLSIZE]; int prec; unsigned long long flen;",
      			"\t\tvoid flush(){if(p+BLOCK>=SIZE) fwrite(buf,1,p,fp),p=0;} void putch(const char& ch){flush();buf[p++]=ch;}",
      			"\tpublic:",
      			"\t\tvoid Set_Persicion(const size_t& x){prec=x;flen=(unsigned long long)(pow(10,x));}",
      			"\t\tqostream(FILE *_fp=stdout,const size_t& p=6):fp(_fp),p(0){Set_Persicion(p);} ~qostream(){fwrite(buf, 1, p, fp);}",
      			"\t\ttemplate<class T>",
      			"\t\ttypename enable_if<is_integral<T>::value|is_same<T,__int128_t>::value,qostream>::type &operator<<(T x){",
      			"\t\t\tint len=0; flush(); x<0?(x=-x,buf[p++]='-'):0; do buf[p+len]=x%10+'0',x/=10,++len; while(x);",
      			"\t\t\tfor(int i=0,j=len-1;i<j;++i,--j) swap(buf[p+i],buf[p+j]); p+=len; Debug; return*this;",
      			"\t\t} template<class T> typename enable_if<is_floating_point<T>::value,qostream>::type &operator<<(T x){",
      			"\t\t\tint len=0; flush(); x<0?(x=-x,buf[p++]='-'):0; x*=flen; unsigned long long ret=x;",
      			"\t\t\tif(x-ret>=0.4999999999) ++ret; if(ret) do flbuf[len++]=ret%10+'0',ret/=10; while(ret);",
      			"\t\t\tif(len>prec){do buf[p++]=flbuf[--len]; while(len>prec); buf[p++]='.';} else{buf[p++]='0',buf[p++]='.';",
      			"\t\t\tfor(size_t i=prec-len;i--;) buf[p++]='0';} do buf[p++]=flbuf[--len]; while(len); Debug; return*this;",
      			"\t\t}",
      			"\t\tqostream &operator<<(const char& x){putch(x); Debug; return*this;}",
      			"\t\tqostream &operator<<(const char *str){while(*str) putch(*str++); Debug; return*this;}",
      			"\t\tqostream &operator<<(const string& str){return *this<<str.c_str();}",
      			"\t}cout(Fout);",
      			"#define cin Fast_IO::cin",
      			"#define cout Fast_IO::cout",
      			"#define endl '\\n'",
      			"}",
      			"namespace exIO{",
      			"\tbool read(char* s){return bool(cin>>s);} void write(char* s){cout<<s;}",
      			"\ttemplate<class T> bool read(T& x){return bool(cin>>x);} template<class T> void write(T x){cout<<x;}",
      			"\ttemplate<class T,class... Args> bool read(T& x,Args&... args){return bool(read(x)|read(args...));}",
      			"\ttemplate<class T=int> T read(){T a; read(a); return a;}",
      			"\ttemplate<class T> void Write(T x){write(x),cout<<' ';}",
      			"\tvoid Write(char c){write(c);if(c!='\\n') cout<<' ';}",
      			"\tvoid Write(char *c){write(c);if(c[strlen(c)-1]!='\\n') cout<<' ';}",
      			"\tvoid Write(string &c){write(c);if(c[c.size()-1]!='\\n') cout<<' ';}",
      			"\tvoid Write(const char *c){write(c);if(c[strlen(c)-1]!='\\n') cout<<' ';}",
      			"\ttemplate<class T,class... Args> void write(T x,Args... args){write(x);write(args...);}",
      			"\ttemplate<class T,class... Args> void Write(T x,Args... args){Write(x);Write(args...);}",
      			"} using namespace exIO;",
      			"",
      			"int main(){",
      			"\t$0",
      			"}"
      		],
      	}
      }
      

      jijidawang's 資料




      posted @ 2023-11-07 18:59  xrlong  閱讀(214)  評論(0)    收藏  舉報

      Loading

      主站蜘蛛池模板: 在线永久看片免费的视频| 91精品午夜福利在线观看 | 99久久99久久久精品久久| 久久人人妻人人做人人爽| 成人国产亚洲精品天堂av| 美女裸体黄网站18禁止免费下载| 欧美变态另类zozo| 少妇爽到呻吟的视频| 99久久国产福利自产拍| 蜜臀视频一区二区在线播放| 亚洲人成在线观看| 蜜臀视频在线观看一区二区| 隆尧县| 午夜DY888国产精品影院| 亚洲一区二区三区在线播放无码 | 漂亮人妻被黑人久久精品| 日日碰狠狠添天天爽五月婷| 国内精品视频区在线2021| 日韩无码视频网站| 九九热视频精品在线播放| 欧美牲交a欧美在线| 在线国产极品尤物你懂的| 国产福利社区一区二区| 久久综合九色综合97欧美| 尤物国精品午夜福利视频| 玖玖在线精品免费视频| 天堂网在线.www天堂在线资源| 建平县| 深夜释放自己在线观看| 成人综合婷婷国产精品久久蜜臀| 亚洲精品美女久久久久9999| 亚洲成av人片天堂网无码| a∨变态另类天堂无码专区| 人妻日韩精品中文字幕| 免费国产高清在线精品一区| V一区无码内射国产| 色猫咪av在线观看| 蓬安县| 狠狠做五月深爱婷婷天天综合| 亚洲成aⅴ人在线电影| 精品偷拍被偷拍在线观看|