首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
537专题
UVA 537(简单计算)
题目链接:点击打开链接 题目给P,U,I中任意2个求第三个变量 #include<cstdio>#include<cstring>#include<cstdlib>#include<cmath>using namespace std;char data[1000];double x[2],unit[2];int locate(int i,int len,int num)
阅读更多...
Postgres 中文周报:Postgres Weekly 537 期
本周报由 Cloudberry Database 社区编译自英文版《Postgres Weekly》,译文较原文有所调整。 推荐博文 🏆 PostgreSQL: The DBMS of the Year 2023 PostgreSQL 荣获 DB-Engines 网站 2023 年度 DBMS 冠军。DB-Engines 收集了 480+ 款数据库系统信息并跟踪它们的流行度,Postg
阅读更多...
SRM 537 div2
本菜把时间记错了,没赶上比赛T_T。这次的题貌似不是很简单,今天大体做了一下 250pt:水题 550pt:题意是给出A, B, X, 求Y,使得A*p + B*q的所有能取到的值X*p' + Y*q'都能取到。如果有无限种可能就return -1。当X同时被A, B整除时return -1,其他情况枚举y,同时满足 (A - y*q')%x == 0 和 (B - x*p')%y == 0
阅读更多...
UVA-537 Artificial Intelligence?
原题连接: https://vjudge.net/problem/UVA-537 AC代码: #include <bits/stdc++.h>using namespace std;int main(){int n;cin >> n;getchar();for (int t = 1; t <= n; t++){cout << "Problem #" << t << endl;cha
阅读更多...