标签:blog http io ar sp 2014 on cti log
本人刚开始接触python,在oj上解一些简单的题,欢迎交流,不喜勿喷.
OJ地址链接:acm.sdut.edu.cn
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1110&cid=1278
#!/usr/bin/env python # coding=utf-8 print 'Hello World!'
http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=1000
#!/usr/bin/env python # coding=utf-8 a=raw_input().split() print int(a[0])+int(a[1])
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1111&cid=1278
#!/usr/bin/env python # coding=utf-8 print '100' print 'A' print '3.140000'
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1117&cid=1279
#!/usr/bin/env python # coding=utf-8 x = input() print abs(x)
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1115&cid=1279
#!/usr/bin/env python # coding=utf-8 x = raw_input().split() print x[1],x[0]
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1208&cid=1279
#!/usr/bin/env python # coding=utf-8 f = input() c = 5*(f - 32)/9 print ("%.2f"% c)
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1116&cid=1279
#!/usr/bin/env python # coding=utf-8 import string x = raw_input() print x.upper()
标签:blog http io ar sp 2014 on cti log
原文地址:http://blog.csdn.net/u013634961/article/details/40041691