2018-10-06から1日間の記事一覧

ARC103 C-/\/\/\/

なんとなく載せます from collections import Counter def main(): n = int(input()) v = [int(i) for i in input().split()] ans = 0 odd = Counter(v[1::2]) even = Counter(v[::2]) odd_mosts = odd.most_common(2) even_mosts = even.most_common(2) if …

最近の近況報告

ToDoを真面目に作っている。自分で使うための。 githubに一応公開している基本的に使っているものは Django rest framework Django rest framework jwt Django matplotlib numpy でバックエンドをたてた。 テストも真面目に書いてる。 アプリ側のUIとかまだ…