結果

問題 No.432 占い(Easy)
ユーザー testtest
提出日時 2022-11-24 06:04:02
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 45,348 KB
最終ジャッジ日時 2024-09-25 07:04:44
合計ジャッジ時間 4,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,040 KB
testcase_01 AC 63 ms
39,040 KB
testcase_02 AC 63 ms
39,040 KB
testcase_03 AC 64 ms
39,296 KB
testcase_04 AC 128 ms
43,904 KB
testcase_05 AC 66 ms
39,552 KB
testcase_06 AC 67 ms
39,296 KB
testcase_07 AC 72 ms
43,244 KB
testcase_08 AC 65 ms
39,296 KB
testcase_09 AC 85 ms
40,704 KB
testcase_10 AC 76 ms
43,648 KB
testcase_11 AC 85 ms
45,032 KB
testcase_12 AC 153 ms
45,064 KB
testcase_13 AC 152 ms
44,940 KB
testcase_14 AC 84 ms
45,036 KB
testcase_15 AC 64 ms
39,296 KB
testcase_16 AC 63 ms
39,168 KB
testcase_17 AC 125 ms
44,928 KB
testcase_18 AC 113 ms
45,064 KB
testcase_19 AC 100 ms
44,928 KB
testcase_20 AC 85 ms
45,052 KB
testcase_21 AC 95 ms
45,348 KB
testcase_22 AC 77 ms
43,776 KB
testcase_23 AC 77 ms
40,064 KB
testcase_24 AC 86 ms
40,960 KB
testcase_25 AC 87 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function fortuneTelling(s) {
    while (s.length > 1) {
        let x = "";
        for (let i = 0; i < s.length - 1; i++) {
            let a = s.slice(i, i + 2);
            let b = (parseInt(a[0]) + parseInt(a[1]));
            if (b >= 10) {
                let c = b.toString();
                x += (parseInt(c[0]) + parseInt(c[1]));
            } else {
                x += b;
            }
        }
        s = x
    }
    return s
}
function Main(input) {
    const src = input.split("\n");
    const n = parseInt(src[0]);
    for (let i = 1; i <= n; i++) {
        console.log(fortuneTelling(src[i]));
    }
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0