結果

問題 No.2947 Sing a Song
ユーザー timitimi
提出日時 2024-10-25 21:38:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 82,584 KB
最終ジャッジ日時 2024-10-25 21:38:13
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,664 KB
testcase_01 AC 47 ms
61,964 KB
testcase_02 AC 48 ms
64,512 KB
testcase_03 AC 59 ms
67,428 KB
testcase_04 AC 62 ms
75,128 KB
testcase_05 AC 46 ms
62,896 KB
testcase_06 AC 56 ms
69,368 KB
testcase_07 AC 58 ms
70,576 KB
testcase_08 AC 61 ms
73,420 KB
testcase_09 AC 57 ms
69,140 KB
testcase_10 AC 54 ms
66,496 KB
testcase_11 AC 49 ms
64,096 KB
testcase_12 AC 61 ms
77,516 KB
testcase_13 AC 72 ms
79,284 KB
testcase_14 AC 48 ms
63,000 KB
testcase_15 AC 63 ms
72,436 KB
testcase_16 AC 57 ms
68,284 KB
testcase_17 AC 65 ms
73,648 KB
testcase_18 AC 92 ms
79,800 KB
testcase_19 AC 98 ms
79,992 KB
testcase_20 AC 75 ms
79,496 KB
testcase_21 AC 67 ms
73,568 KB
testcase_22 AC 90 ms
79,908 KB
testcase_23 AC 115 ms
79,980 KB
testcase_24 AC 83 ms
79,676 KB
testcase_25 AC 124 ms
80,536 KB
testcase_26 AC 87 ms
79,668 KB
testcase_27 AC 95 ms
82,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#H,W=map(int, input().split())
N=int(input())
S,T=input().split()
A=list(map(int, input().split()))
s,t=len(S),len(T)
M=2*10**5+10
dp=[10**6]*(M+1)
P=[-1]*(M+1)
dp[0]=0;P[0]=0

for i in range(1,M+1):
  nex=s*i 
  if nex>M:
    break
  dp[nex]=i;P[nex]=0
for i in range(1,M+1):
  if dp[i]==10**6:
    if i-t>=0 and dp[i-t]!=10**6:
      dp[i]=dp[i-t]
      P[i]=P[i-t]+1
  

for a in A:
  F=[]
  for i in range(dp[a]):
    F.append(S) 
  for i in range(P[a]):
    F.append(T)
  print(*F)
0