結果

問題 No.2947 Sing a Song
ユーザー anago-pieanago-pie
提出日時 2024-10-31 17:05:39
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 7,204 KB
実行使用メモリ 47,152 KB
最終ジャッジ日時 2024-10-31 17:05:48
合計ジャッジ時間 8,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
39,424 KB
testcase_01 AC 64 ms
39,168 KB
testcase_02 AC 66 ms
39,296 KB
testcase_03 AC 67 ms
39,552 KB
testcase_04 AC 76 ms
44,160 KB
testcase_05 AC 68 ms
39,808 KB
testcase_06 AC 70 ms
43,264 KB
testcase_07 AC 71 ms
43,648 KB
testcase_08 AC 74 ms
43,904 KB
testcase_09 AC 83 ms
40,192 KB
testcase_10 AC 70 ms
40,192 KB
testcase_11 AC 73 ms
40,064 KB
testcase_12 AC 99 ms
45,432 KB
testcase_13 AC 87 ms
44,672 KB
testcase_14 AC 77 ms
40,192 KB
testcase_15 AC 80 ms
43,904 KB
testcase_16 AC 74 ms
40,192 KB
testcase_17 AC 105 ms
44,672 KB
testcase_18 AC 216 ms
46,536 KB
testcase_19 AC 206 ms
46,612 KB
testcase_20 AC 117 ms
45,056 KB
testcase_21 AC 102 ms
45,184 KB
testcase_22 AC 260 ms
46,552 KB
testcase_23 AC 305 ms
46,892 KB
testcase_24 AC 331 ms
46,648 KB
testcase_25 AC 342 ms
46,584 KB
testcase_26 AC 305 ms
46,752 KB
testcase_27 AC 574 ms
47,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(INPUT){
  const input=INPUT.split("\n");
  const N=parseInt(input[0]);
  const [S,T]=input[1].split(" ");
  const [s,t]=[S.length,T.length];
  const A=input[2].split(" ").map(_=>parseInt(_));
  for(let i=0;i<N;i++){
    for(let j=0;j<=A[i];j++){
      let k=A[i]-t*j;
      if(k%s==0){
        console.log(Array(j+k/s).fill().map((_,id)=>id<j?T:S).join(" "));
        break;
      }
    }
  }
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0