地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2019-04-11から1日間の記事一覧

pythonで始めるatcoder [超絶初心者編]

超絶初心者がpythonでatcoderを始めた時に役立つコード集です。 スニペット import sys import math import fractions from functools import reduce 入力処理 1行 / 1列 s = input() n = int(input()) x = float(input()) 1行 / R列 l = list(map(int, inpu…