結果

問題 No.2947 Sing a Song
ユーザー ゼットゼット
提出日時 2024-10-25 21:26:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 82,240 KB
最終ジャッジ日時 2024-10-25 21:26:49
合計ジャッジ時間 4,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,308 KB
testcase_01 AC 37 ms
54,792 KB
testcase_02 AC 38 ms
55,016 KB
testcase_03 AC 52 ms
64,924 KB
testcase_04 AC 53 ms
73,004 KB
testcase_05 AC 37 ms
55,116 KB
testcase_06 AC 51 ms
67,192 KB
testcase_07 AC 51 ms
68,040 KB
testcase_08 AC 53 ms
71,836 KB
testcase_09 AC 50 ms
65,520 KB
testcase_10 AC 49 ms
64,712 KB
testcase_11 AC 41 ms
56,652 KB
testcase_12 AC 52 ms
74,012 KB
testcase_13 AC 63 ms
78,352 KB
testcase_14 AC 41 ms
55,804 KB
testcase_15 AC 57 ms
69,948 KB
testcase_16 AC 51 ms
65,888 KB
testcase_17 AC 61 ms
73,676 KB
testcase_18 AC 85 ms
79,288 KB
testcase_19 AC 102 ms
79,568 KB
testcase_20 AC 69 ms
78,728 KB
testcase_21 AC 72 ms
75,868 KB
testcase_22 AC 87 ms
79,544 KB
testcase_23 AC 98 ms
79,292 KB
testcase_24 AC 83 ms
79,100 KB
testcase_25 AC 99 ms
79,112 KB
testcase_26 AC 87 ms
79,260 KB
testcase_27 AC 98 ms
82,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S,T=input().split()
A=list(map(int,input().split()))
v=[0]*(3*10**5)
a=len(S)
b=len(T)
result=[]
for i in range(N):
  result=[]
  x=A[i]
  z=0
  for y in range(x+1):
    if y*a>x:
      break
    if (x-y*a)%b==0:
      z=y
  w=(x-z*a)//b
  for j in range(z):
    result.append(S)
  for j in range(w):
    result.append(T)
  print(*result)
0