βshortの自堕落Diary

web関係や、プログラミングなどを扱う予定です。プランなど立てていないので、不定期投稿になります。

2017-06-21から1日間の記事一覧

AOJ ITP1_4

AOJ

ITP1_4_A:A/B Problem合ってない・・・ s=input().rstrip().split() a=int(s[0]) b=int(s[1]) print(a//b,a%b,a/b) ITP1_4_B:Circle import math r=float(input()) print(r**2*math.pi,r*2*math.pi) ITP1_4_C:Simple Calculator while True: s=input().rstri…

AOJ ITP1_3

AOJ

AOJ ITP1_3 AOJ ITP1_3 ITP1_3_A:Print Many Hello World ITP1_3_B:Print Test Cases ITP1_3_C:Swapping Two Numbers ITP1_3_D:How Many Divisors? ITP1_3_A:Print Many Hello World for i in range(1000): print("Hello World") ITP1_3_B:Print Test Cases …