結果

問題 No.2947 Sing a Song
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-25 21:30:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 79,216 KB
最終ジャッジ日時 2024-10-25 21:30:51
合計ジャッジ時間 4,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,036 KB
testcase_01 AC 35 ms
52,688 KB
testcase_02 AC 35 ms
51,888 KB
testcase_03 AC 52 ms
67,164 KB
testcase_04 AC 55 ms
71,320 KB
testcase_05 AC 40 ms
61,220 KB
testcase_06 AC 46 ms
65,872 KB
testcase_07 AC 49 ms
67,268 KB
testcase_08 AC 51 ms
70,252 KB
testcase_09 AC 49 ms
66,704 KB
testcase_10 AC 48 ms
66,424 KB
testcase_11 AC 51 ms
67,416 KB
testcase_12 AC 52 ms
73,940 KB
testcase_13 AC 72 ms
76,264 KB
testcase_14 AC 47 ms
65,784 KB
testcase_15 AC 55 ms
71,308 KB
testcase_16 AC 52 ms
67,924 KB
testcase_17 AC 58 ms
73,296 KB
testcase_18 AC 63 ms
73,936 KB
testcase_19 AC 70 ms
76,232 KB
testcase_20 AC 66 ms
76,140 KB
testcase_21 AC 72 ms
76,200 KB
testcase_22 AC 66 ms
76,484 KB
testcase_23 AC 78 ms
76,380 KB
testcase_24 AC 79 ms
76,436 KB
testcase_25 AC 82 ms
76,424 KB
testcase_26 AC 75 ms
76,684 KB
testcase_27 AC 89 ms
79,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
S,T=input().split()
A=list(map(int,input().split()))
for a in A:
  for i in reversed(range(a+1)):
    if (a-i*len(S))>=0 and (a-i*len(S))%len(T)==0:
      print(*([S]*i+[T]*((a-i*len(S))//len(T))))
      break
0