結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー eloyeloy
提出日時 2021-07-31 03:57:12
言語 TypeScript
(5.4.3)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 819 bytes
コンパイル時間 6,621 ms
コンパイル使用メモリ 145,424 KB
最終ジャッジ日時 2024-09-16 07:47:30
合計ジャッジ時間 6,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.ts(2,16): error TS2580: Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
main.ts(3,10): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
main.ts(4,11): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.

ソースコード

diff #

let lines: string[] = [];
const reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});

reader.on('line', function (line: string) {
  lines.push(line);
  if (lines.length === 2) {
    reader.close();
    main();
  }
});

function main () {
  const n = +lines[0];
  const nums = lines[1].split(' ').map((s,i) => [i+1, +s]).filter(e => e[1]);

  const res = result(n, nums);
  console.log(res);
}

function result (n: number, nums: number[][], res = 0): number {
  if (n === 0) return res;
  else {
    if (nums[nums.length-1][1] === 1) return result(n-1, nums.slice(0,nums.length-1), res * 10 + nums[nums.length-1][0]);
    else return result(n-1, [...nums.slice(0,nums.length-1), [nums[nums.length-1][0], nums[nums.length-1][1]-1]], res * 10 + nums[nums.length-1][0]);
  }
}
0