結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ooaiuooaiu
提出日時 2024-12-07 11:11:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 652 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-12-07 11:11:46
合計ジャッジ時間 10,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,456 KB
testcase_01 AC 472 ms
75,908 KB
testcase_02 AC 472 ms
76,160 KB
testcase_03 AC 497 ms
76,128 KB
testcase_04 AC 460 ms
76,100 KB
testcase_05 AC 652 ms
76,084 KB
testcase_06 AC 621 ms
76,544 KB
testcase_07 AC 106 ms
76,160 KB
testcase_08 AC 117 ms
76,696 KB
testcase_09 AC 78 ms
73,984 KB
testcase_10 AC 77 ms
74,112 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 135 ms
74,624 KB
testcase_14 AC 137 ms
73,472 KB
testcase_15 AC 120 ms
72,968 KB
testcase_16 AC 122 ms
73,216 KB
testcase_17 AC 154 ms
75,008 KB
testcase_18 AC 115 ms
73,600 KB
testcase_19 AC 162 ms
74,560 KB
testcase_20 AC 222 ms
79,416 KB
testcase_21 AC 141 ms
74,368 KB
testcase_22 AC 140 ms
75,008 KB
testcase_23 AC 214 ms
79,232 KB
testcase_24 AC 217 ms
79,400 KB
testcase_25 AC 239 ms
79,744 KB
testcase_26 AC 213 ms
79,744 KB
testcase_27 AC 208 ms
79,872 KB
testcase_28 AC 207 ms
79,488 KB
testcase_29 AC 211 ms
79,232 KB
testcase_30 AC 231 ms
78,920 KB
testcase_31 AC 205 ms
79,104 KB
testcase_32 AC 213 ms
79,712 KB
testcase_33 AC 201 ms
78,612 KB
testcase_34 AC 477 ms
76,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)
def solve():
    N, M = map(int, input().split())
    ans = N * (N + 1) // 2
    print(ans % M)

def main():
    T = int(input())
    for i in range(T):
        solve()

if __name__ == '__main__':
    main()
0