エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
from itertools import chain, combinations_with_replacement as combi_r def solve(d): n=map(int, d.... from itertools import chain, combinations_with_replacement as combi_r def solve(d): n=map(int, d.split(',')) s=set(n) a=[(x,y,z) for x in xrange(1, n[0]+1) for y in xrange(x, n[-1]+1) for z in xrange(max(y, n[-1]/3), n[-1]+1) if s == s&{sum(c) for c in chain(*[combi_r((x,y,z), r) for r in (1,2,3)])}] return not a and 'none' or a[1:] and 'many' or ','.join(map(str, a[0])) from itertools import * de