結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー parukiparuki
提出日時 2024-03-03 00:43:55
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,598 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 71,548 KB
最終ジャッジ日時 2024-11-18 21:15:14
合計ジャッジ時間 20,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
39,424 KB
testcase_01 AC 1,528 ms
69,784 KB
testcase_02 AC 1,479 ms
69,276 KB
testcase_03 AC 1,451 ms
69,404 KB
testcase_04 AC 1,473 ms
69,272 KB
testcase_05 AC 1,598 ms
71,428 KB
testcase_06 AC 1,575 ms
71,548 KB
testcase_07 AC 309 ms
50,352 KB
testcase_08 AC 311 ms
50,388 KB
testcase_09 AC 122 ms
45,312 KB
testcase_10 AC 122 ms
45,696 KB
testcase_11 AC 69 ms
39,296 KB
testcase_12 AC 69 ms
39,040 KB
testcase_13 AC 180 ms
40,588 KB
testcase_14 AC 182 ms
40,328 KB
testcase_15 AC 164 ms
40,252 KB
testcase_16 AC 176 ms
40,336 KB
testcase_17 AC 189 ms
40,840 KB
testcase_18 AC 173 ms
40,592 KB
testcase_19 AC 181 ms
40,588 KB
testcase_20 AC 211 ms
40,120 KB
testcase_21 AC 181 ms
40,588 KB
testcase_22 AC 186 ms
40,716 KB
testcase_23 AC 217 ms
40,424 KB
testcase_24 AC 214 ms
40,296 KB
testcase_25 AC 217 ms
40,296 KB
testcase_26 AC 217 ms
40,296 KB
testcase_27 AC 215 ms
40,300 KB
testcase_28 AC 213 ms
40,292 KB
testcase_29 AC 216 ms
40,300 KB
testcase_30 AC 213 ms
40,420 KB
testcase_31 AC 213 ms
40,296 KB
testcase_32 AC 214 ms
40,424 KB
testcase_33 AC 215 ms
40,300 KB
testcase_34 AC 1,474 ms
67,292 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) {
        // NM = lines[i+1].split(" ").map((x)=>BigInt(x));
        const NM = lines[i+1].split(" ").map(BigInt);
        const M = NM[1];
        const N = NM[0];
        const ans = N%2n==0?
            ((N/2n)%M*((N+1n)%M))%M
            : N%M*((N+1n)/2n%M)%M;
        console.log(ans.toString());
    }
}
0