2 条题解

  • 1
    @ 2025-10-1 12:16:35

    int n;cin>>n;int x,y;cin>>x>>y;cout<<x<<" "<<y;

    • 1
      @ 2025-9-8 19:56:26
      #include<bits/stdc++.h>
      using namespace std;
      void read(int &h){
          char o;
          int x=0,y=1;
          o=getchar_unlocked();
          while(!(o<='9'&&o>='0')){
              if(o=='-'){
                  y=-1;
              }
              o=getchar_unlocked();
          }
          while(o<='9'&&o>='0'){
              x*=10;
              x+=o-'0';
              o=getchar_unlocked();
          }
          h=x*y;
          return ;
      }
      int main(){
          ios::sync_with_stdio(0);cin.tie(nullptr);cout.tie(nullptr);
          printf("0 0");
          return 0;
      }
      
      
      • 1

      信息

      ID
      39108
      时间
      1000ms
      内存
      512MiB
      难度
      5
      标签
      递交数
      2
      已通过
      2
      上传者