[Python] ABC004 C
C - 入れ替え n = int(input()) n = n % 30 lst_num = for i in range(n): first = i % 5 + 1 second = i % 5 +2 lst_num, lst_num =...
Freedom is a responsible choice.
C - 入れ替え n = int(input()) n = n % 30 lst_num = for i in range(n): first = i % 5 + 1 second = i % 5 +2 lst_num, lst_num =...
B - 回転 table = [] while True: try: table.append(list(input().split())) except: break table = table #print(table) table_180...
A - 流行 n = int(input()) print(n*2) さすがに簡単。
D - AtCoder社の冬 import math # 順列 def P(n, r): return math.factorial(n)//math.factorial(n-r) # 組み合わせ def C(n, r): return P(n, r)/...
C - AtCoderプログラミング講座 # n 講座動画の数, k 見ることの出来る動画の数 n, k = map(int, input().split()) # r 講座動画を配信している競技プログラマのレート r = list(map(int, input().sp...
B - AtCoderトランプ s = input() t = input() commercial_at = flag = True for i in range(len(s)): if s == t: continue elif ...
A - AtCoder社の給料 task = int(input()) average_salary = sum(range(1, task+1))*10000//task print(average_salary) メモ ragneを使うより期待値を使ったほ...
D - 派閥 from itertools import combinations n, m = map(int, input().split()) matrix_relations = * n for _ in range(n)] # matrixに関係を格納する。...
C - 直訴 xa, ya, xb, yb, xc, yc = map(int, input().split()) #(xa, ya)が原点になるように三角形を平行移動する。 a = xb - xa b = yb - ya c = xc - xa d = yc - y...
B - 罠 W = input() output = '' for w in W: if w not in 'aiueo': output += w print(output) メモ pythonでは、in を使うと、その文字が含まれる...