2 条题解

  • 1
    @ 2025-2-6 1:38:10

    if 秒了:

    #include <bits/stdc++.h>
    using namespace std;
    long long x, y;
    int main() {
    	cin >> x >> y;
    	if (x > y) cout << '>';
    	else if (x < y) cout << '<';
    	else cout << '=';
    	return 0;
    }
    
    • 0
      @ 2024-11-23 9:07:15

      在Python3中,int范围无穷大,可以正常写

      x, y = map(int, input().split())
      if x > y:
          print(">")
      elif x == y:
          print("=")
      else:
          print("<")
      
      • 1

      信息

      ID
      4489
      时间
      1000ms
      内存
      512MiB
      难度
      1
      标签
      (无)
      递交数
      142
      已通过
      89
      上传者