2 条题解

  • 1
    @ 2025-1-5 14:04:12

    数据炸了!

    #include<bits/stdc++.h>
    #define int long long
    #define INF 0x3f3f3f
    using namespace std;
    int x,y,z;
    signed main(){
    	cin>>x>>y>>z;
    	if(x>110&&y>110&&z>110)
    		cout<<"优秀";
    	else cout<<"良好";
    	return 0;
    }
    
    • 0
      @ 2024-12-22 11:03:57

      C++ :

      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int a,b,c;
      	cin>>a>>b>>c;
      	if(a>110 && b>110 && c>110)
      	cout<<"优秀";
      	else cout<<"良好";
      }
      

      Python :

      # coding=utf-8
      a=int(input())
      b=int(input())
      c=int(input())
      if (a>=110 and b>=110 and c>=110):
          print("优秀")
      else:
          print("良好")
      
      • 1

      信息

      ID
      103
      时间
      300000ms
      内存
      128MiB
      难度
      10
      标签
      (无)
      递交数
      4
      已通过
      0
      上传者