結果

問題 No.2947 Sing a Song
ユーザー hato336hato336
提出日時 2024-10-25 21:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,904 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 92,396 KB
最終ジャッジ日時 2024-10-25 21:28:14
合計ジャッジ時間 7,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
85,488 KB
testcase_01 AC 124 ms
85,888 KB
testcase_02 AC 126 ms
85,624 KB
testcase_03 AC 155 ms
90,240 KB
testcase_04 AC 163 ms
90,096 KB
testcase_05 AC 136 ms
89,736 KB
testcase_06 AC 145 ms
90,068 KB
testcase_07 AC 155 ms
90,248 KB
testcase_08 AC 153 ms
90,088 KB
testcase_09 AC 146 ms
90,112 KB
testcase_10 AC 161 ms
90,320 KB
testcase_11 AC 142 ms
90,012 KB
testcase_12 AC 147 ms
89,836 KB
testcase_13 AC 162 ms
90,004 KB
testcase_14 AC 146 ms
90,036 KB
testcase_15 AC 154 ms
90,108 KB
testcase_16 AC 153 ms
89,888 KB
testcase_17 AC 154 ms
90,072 KB
testcase_18 AC 158 ms
90,308 KB
testcase_19 AC 169 ms
90,392 KB
testcase_20 AC 157 ms
90,272 KB
testcase_21 AC 177 ms
90,512 KB
testcase_22 AC 160 ms
90,300 KB
testcase_23 AC 174 ms
90,932 KB
testcase_24 AC 166 ms
90,616 KB
testcase_25 AC 183 ms
91,016 KB
testcase_26 AC 160 ms
90,652 KB
testcase_27 AC 166 ms
92,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline

#alist = list(map(int,input().split()))
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = collections.defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return ''.join(f'{r}: {m}' for r, m in self.all_group_members().items())
#alist = []
#s = input()
n = int(input())
s,t = input().split()
a = list(map(int,input().split()))
for i in a:
    for j in reversed(range(i+1)):
        if i - len(s) * j >= 0 and (i - len(s) * j) % len(t) == 0:
            for k in range(j):
                print(s,end=' ')
            for k in range((i - len(s) * j) // len(t)):
                print(t,end=' ')
            print()
            break
        
0