2 条题解

  • 0
    @ 2025-10-13 14:45:07

    Python:

    year = int(input())
    print(year*31560000)
    
    • 0
      @ 2024-7-25 12:41:43

      参考答案:

      #include<iostream>
      #include<cmath>
      
      using namespace std;
      
      int main()
      {
          int age;
          long long ans;
          scanf("%d", &age);
          ans = age * 3.156 * pow(10, 7);
          printf("%lld", ans);
      
          return 0;
      }
      
      • 1

      信息

      ID
      32
      时间
      1000ms
      内存
      256MiB
      难度
      8
      标签
      递交数
      17
      已通过
      7
      上传者