AtCoderなど過去問

JOI 2008 予選 4 – 星座探し

JOI 2008 予選 4 - 星座探し m = int(input()) seek = n = int(input()) pict = pict_set = set(pict) seek.sort() o = seek se...
AtCoderなど過去問

AtCoder Beginner Contest 145 C – Average Length

AtCoder Beginner Contest 145 C - Average Length import itertools import math n = int(input()) plot = dist = 0 for...
AtCoderなど過去問

ALDS_4_B – 二分探索

ALDS_4_B - 二分探索 n = int(input()) s = list(map(int,input().split())) q = int(input()) t = list(map(int,input().split(...
AtCoderなど過去問

JOI 2009 本選 2 – ピザ

JOI 2009 本選 2 - ピザ d = int(input()) n = int(input()) m = int(input()) shop = cus = shop.append(0) shop.append(d) ...
AtCoderなど過去問

AtCoder Beginner Contest 034 C – 経路

AtCoder Beginner Contest 034 C - 経路 import math def com_cnt(n, r): return math.factorial(n) // (math.factorial(...
AtCoderなど過去問

NTL_1_B – べき乗

NTL_1_B - べき乗 m の n 乗を1,000,000,007で割った余りを求める問題。 以下だとTLEする。 m,n = map(int,input().split()) print(pow(m, n) % 1...
AtCoderなど過去問

NTL_1_A – 素因数分解

NTL_1_A - 素因数分解 def trial_div(n): ans = [] while n % 2 == 0: ans.append(2) n //= 2 d = 3...
AtCoderなど過去問

OI 2007 本選 3 – 最古の遺跡

OI 2007 本選 3 - 最古の遺跡 n = int(input()) pillar = pillar_set = set(pillar) ans = 0 for i in range(n): for j in r...
AtCoderなど過去問

三井住友信託銀行プログラミングコンテスト 2019 D – Lucky PIN

三井住友信託銀行プログラミングコンテスト 2019 D - Lucky PIN n = int(input()) s = input() ans = 0 for i in range(10): for j in range...
AtCoderなど過去問

AtCoder Beginner Contest 095 C – Half and Half

5 AtCoder Beginner Contest 095 C - Half and Half a,b,c,x,y = map(int,input().split()) loop = (max(x,y)) * 2 +...
タイトルとURLをコピーしました