結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー test
提出日時 2022-11-22 13:26:48
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-09-22 22:18:14
合計ジャッジ時間 3,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

function isB(n) {
    return n.includes("4") && n.includes("6");
}
function Main(input) {
    const n = input.replace("\n", "").split("");
    console.log(isB(n) ? "Beautiful" : "...");
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0