結果

問題 No.499 7進数変換
ユーザー test
提出日時 2022-11-24 17:03:12
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 161 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 7,704 KB
実行使用メモリ 44,328 KB
最終ジャッジ日時 2025-03-15 13:44:06
合計ジャッジ時間 3,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    const n = parseInt(input.replace("\n", ""));
    console.log(n.toString(7));
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0