RSS
linjiazhen
分类
标签云
搜索
随机文章
最新评论
最新留言
链接
计数器
145093
SGU 112:a^b-b^a
题目链接:http://acm.sgu.ru/problem.php?contest=0&problem=112
题目大意:
输入a,b输出a^b-b^a的值。(1<=a,b<=100)
解题思路:
肯定是用高精度算法,可是比较懒阿,先用JAVA写一个,然后C++的以后写吧。
解题代码:
import java.math.*; import java.io.*; import java.util.*; public class Solution{ public static void main(String[] args){ Scanner cin=new Scanner(System.in); int a,b; while(cin.hasNext()){ a=cin.nextInt(); b=cin.nextInt(); System.out.println(BigInteger.valueOf(a).pow(b).subtract(BigInteger.valueOf(b).pow(a))); } } }
扩展知识:http://blog.csdn.net/soberman/archive/2009/03/10/3978074.aspx
- [ICM Technex 2018 and Codeforces Round #463][Codeforces 932E] Team Work
- [2016-2017 ACM-ICPC CHINA-Final][GYM 101194 E] Bet
- [坑]狄利克雷卷积和反演
- 抽代试卷上的一个题
- [BZOJ4734] [清华集训2016] 如何优雅地求和
- Codeforces Goodbye2016 G New Year and Binary Tree Paths 数学+DP
- *2
- 学委真不负责
- [BZOJ 2186]沙拉公主的困惑
- 听说所有symmetric Pascal matrix的行列式都是1
2011年3月31日 23:47
我来用 Python 写个——
try:
a, b = map(int, input('a b: ').strip().split())
print(a ** b - b ** a)
except:
print('input error')
2011年4月01日 10:12
现在的高级语言是越来越强大啦~