結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー parukiparuki
提出日時 2024-03-03 01:00:40
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,546 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 71,556 KB
最終ジャッジ日時 2024-09-30 10:29:10
合計ジャッジ時間 19,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,168 KB
testcase_01 AC 1,534 ms
69,660 KB
testcase_02 AC 1,355 ms
69,276 KB
testcase_03 AC 1,323 ms
69,148 KB
testcase_04 AC 1,428 ms
69,276 KB
testcase_05 AC 1,546 ms
71,556 KB
testcase_06 AC 1,345 ms
71,300 KB
testcase_07 AC 296 ms
50,608 KB
testcase_08 AC 260 ms
50,360 KB
testcase_09 AC 111 ms
45,312 KB
testcase_10 AC 106 ms
45,312 KB
testcase_11 AC 64 ms
39,424 KB
testcase_12 AC 60 ms
39,296 KB
testcase_13 AC 153 ms
40,208 KB
testcase_14 AC 157 ms
40,076 KB
testcase_15 AC 139 ms
39,948 KB
testcase_16 AC 149 ms
40,208 KB
testcase_17 AC 164 ms
40,460 KB
testcase_18 AC 150 ms
40,204 KB
testcase_19 AC 156 ms
40,208 KB
testcase_20 AC 181 ms
39,732 KB
testcase_21 AC 154 ms
40,328 KB
testcase_22 AC 156 ms
40,204 KB
testcase_23 AC 181 ms
39,908 KB
testcase_24 AC 183 ms
39,908 KB
testcase_25 AC 183 ms
40,288 KB
testcase_26 AC 183 ms
40,032 KB
testcase_27 AC 184 ms
40,036 KB
testcase_28 AC 181 ms
40,040 KB
testcase_29 AC 185 ms
40,036 KB
testcase_30 AC 184 ms
40,288 KB
testcase_31 AC 184 ms
39,904 KB
testcase_32 AC 182 ms
40,032 KB
testcase_33 AC 181 ms
40,036 KB
testcase_34 AC 1,340 ms
67,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Main(require("fs").readFileSync("/dev/stdin", "utf8").split("\n"));

function Main(lines) {
    const T = parseInt(lines[0]);
    for(let i=0; i<T; ++i) {
        const NM = lines[i+1].split(" ").map(BigInt);
        let M = NM[1];
        let N = NM[0] % (2n*M);
        const r = N*(N+1n)%(2n*M)/2n;
        console.log(r.toString());
    }
}
0