結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー parukiparuki
提出日時 2024-03-03 00:38:57
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,648 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 6,952 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-11-07 00:47:01
合計ジャッジ時間 20,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
39,040 KB
testcase_01 AC 1,648 ms
69,656 KB
testcase_02 AC 1,497 ms
69,404 KB
testcase_03 AC 1,481 ms
69,272 KB
testcase_04 AC 1,481 ms
69,276 KB
testcase_05 AC 1,561 ms
71,424 KB
testcase_06 AC 1,566 ms
71,424 KB
testcase_07 AC 309 ms
50,356 KB
testcase_08 AC 304 ms
50,484 KB
testcase_09 AC 122 ms
45,440 KB
testcase_10 AC 123 ms
45,568 KB
testcase_11 AC 69 ms
39,424 KB
testcase_12 AC 70 ms
39,424 KB
testcase_13 AC 226 ms
41,228 KB
testcase_14 AC 226 ms
41,392 KB
testcase_15 AC 202 ms
41,484 KB
testcase_16 AC 215 ms
41,232 KB
testcase_17 AC 239 ms
41,392 KB
testcase_18 AC 216 ms
41,484 KB
testcase_19 AC 228 ms
41,136 KB
testcase_20 AC 262 ms
40,876 KB
testcase_21 AC 226 ms
40,968 KB
testcase_22 AC 228 ms
41,480 KB
testcase_23 AC 265 ms
41,056 KB
testcase_24 AC 265 ms
41,180 KB
testcase_25 AC 266 ms
41,308 KB
testcase_26 AC 262 ms
41,052 KB
testcase_27 AC 265 ms
41,060 KB
testcase_28 AC 267 ms
41,184 KB
testcase_29 AC 266 ms
41,184 KB
testcase_30 AC 267 ms
41,160 KB
testcase_31 AC 265 ms
41,184 KB
testcase_32 AC 265 ms
41,184 KB
testcase_33 AC 263 ms
41,308 KB
testcase_34 AC 1,474 ms
67,460 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*(N+1n)/2n%M;
        console.log(ans.toString());
    }
}
0