結果

問題 No.2947 Sing a Song
ユーザー detteiuudetteiuu
提出日時 2024-10-25 21:36:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 83,208 KB
最終ジャッジ日時 2024-10-25 21:36:43
合計ジャッジ時間 4,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,856 KB
testcase_01 AC 36 ms
53,020 KB
testcase_02 AC 35 ms
52,544 KB
testcase_03 AC 47 ms
62,412 KB
testcase_04 AC 49 ms
69,284 KB
testcase_05 AC 35 ms
52,460 KB
testcase_06 AC 47 ms
64,364 KB
testcase_07 AC 49 ms
65,856 KB
testcase_08 AC 49 ms
68,520 KB
testcase_09 AC 47 ms
62,808 KB
testcase_10 AC 48 ms
63,184 KB
testcase_11 AC 39 ms
53,488 KB
testcase_12 AC 52 ms
72,240 KB
testcase_13 AC 57 ms
74,332 KB
testcase_14 AC 40 ms
53,596 KB
testcase_15 AC 53 ms
67,112 KB
testcase_16 AC 48 ms
62,708 KB
testcase_17 AC 56 ms
68,360 KB
testcase_18 AC 69 ms
74,140 KB
testcase_19 AC 87 ms
77,124 KB
testcase_20 AC 74 ms
77,428 KB
testcase_21 AC 60 ms
69,172 KB
testcase_22 AC 71 ms
75,164 KB
testcase_23 AC 89 ms
78,284 KB
testcase_24 AC 82 ms
78,060 KB
testcase_25 AC 94 ms
78,368 KB
testcase_26 AC 82 ms
78,004 KB
testcase_27 AC 104 ms
83,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S, T = input().split()
A = list(map(int, input().split()))

ans = [[] for _ in range(N)]
for i in range(N):
    while A[i]%len(S) != 0:
        ans[i].append(T)
        A[i] -= len(T)
    while A[i] >= 1:
        ans[i].append(S)
        A[i] -= len(S)

for a in ans:
    print(*a)
0