首页 > 简单题2
头像 小琢卷不动
发表于 2021-11-23 10:54:58
有了第一题的经验,我们可以立即猜出所谓 γ=e=2.71828⋯\gamma=e=2.71828\cdotsγ=e=2.71828⋯ 而事实上这道题也就是把式子模拟一下就可以了: ab=c×da^b=c\times dab=c×d 所以 d=abcd=\dfrac{a^b}{c}d=cab​(为了方 展开全文
头像 云海中的孤舟
发表于 2020-05-24 22:24:18
contest/85/B #include<bits/stdc++.h> using namespace std; int main(){ int t; int a,b,c; cin>>t; while(t--){ cin> 展开全文