2 条题解

  • 1
    @ 2025-8-29 20:22:15

    发个题解玩玩 :)

    • 1
      @ 2025-8-27 22:21:27

      本题考察的是小学数学。 在小学,我们知道,a×ba\times b代表aabb,而我们又双叒叕知道:物品总数=固定的物品数量×\times人数。我们就可以令人数为aa,固定的梨子数量为bb,那么总数就是a×ba\times b。本题就被解决了。 上代码:

      #include <bits/stdc++.h>
      using namespace std;
      int a, b;
      int main(void) {
      	cin >> a >> b;
      	cout << a * b;
      	return 0;
      }
      
      • 1

      信息

      ID
      25
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      11
      已通过
      9
      上传者