結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー 👑 rin204rin204
提出日時 2024-02-23 21:29:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 645 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 80,016 KB
最終ジャッジ日時 2024-09-29 05:34:10
合計ジャッジ時間 10,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,276 KB
testcase_01 AC 510 ms
75,936 KB
testcase_02 AC 492 ms
76,172 KB
testcase_03 AC 484 ms
75,856 KB
testcase_04 AC 485 ms
76,452 KB
testcase_05 AC 645 ms
76,024 KB
testcase_06 AC 624 ms
76,092 KB
testcase_07 AC 110 ms
76,096 KB
testcase_08 AC 110 ms
76,232 KB
testcase_09 AC 81 ms
74,700 KB
testcase_10 AC 80 ms
74,708 KB
testcase_11 AC 39 ms
53,676 KB
testcase_12 AC 39 ms
53,624 KB
testcase_13 AC 149 ms
74,460 KB
testcase_14 AC 130 ms
73,584 KB
testcase_15 AC 120 ms
72,552 KB
testcase_16 AC 126 ms
73,456 KB
testcase_17 AC 155 ms
75,224 KB
testcase_18 AC 125 ms
73,816 KB
testcase_19 AC 148 ms
74,920 KB
testcase_20 AC 228 ms
80,016 KB
testcase_21 AC 144 ms
74,044 KB
testcase_22 AC 150 ms
75,092 KB
testcase_23 AC 228 ms
79,256 KB
testcase_24 AC 228 ms
79,384 KB
testcase_25 AC 226 ms
79,792 KB
testcase_26 AC 228 ms
79,308 KB
testcase_27 AC 226 ms
79,512 KB
testcase_28 AC 227 ms
79,204 KB
testcase_29 AC 226 ms
79,468 KB
testcase_30 AC 229 ms
79,248 KB
testcase_31 AC 229 ms
79,112 KB
testcase_32 AC 229 ms
79,260 KB
testcase_33 AC 216 ms
78,624 KB
testcase_34 AC 474 ms
76,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.set_int_max_str_digits(10**7)


def solve():
    n, m = map(int, input().split())
    print(n * (n + 1) // 2 % m)
    return
    if n < m:
        print(n * (n + 1) // 2 % m)
        return
    n %= m
    n += m
    print(n * (n + 1) // 2 % m)


for _ in range(int(input())):
    solve()
0