結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー titiatitia
提出日時 2024-02-23 21:34:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 79,700 KB
最終ジャッジ日時 2024-09-29 05:45:43
合計ジャッジ時間 7,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,336 KB
testcase_01 AC 126 ms
75,672 KB
testcase_02 AC 131 ms
75,852 KB
testcase_03 AC 128 ms
76,408 KB
testcase_04 AC 133 ms
76,352 KB
testcase_05 AC 260 ms
75,876 KB
testcase_06 AC 259 ms
76,016 KB
testcase_07 AC 79 ms
76,128 KB
testcase_08 AC 75 ms
75,900 KB
testcase_09 AC 58 ms
66,460 KB
testcase_10 AC 57 ms
66,100 KB
testcase_11 AC 39 ms
53,364 KB
testcase_12 AC 40 ms
52,824 KB
testcase_13 AC 149 ms
74,372 KB
testcase_14 AC 131 ms
73,256 KB
testcase_15 AC 121 ms
72,288 KB
testcase_16 AC 128 ms
73,176 KB
testcase_17 AC 159 ms
75,356 KB
testcase_18 AC 124 ms
73,560 KB
testcase_19 AC 152 ms
74,552 KB
testcase_20 AC 230 ms
79,392 KB
testcase_21 AC 144 ms
74,064 KB
testcase_22 AC 149 ms
75,244 KB
testcase_23 AC 227 ms
79,232 KB
testcase_24 AC 227 ms
79,476 KB
testcase_25 AC 226 ms
79,488 KB
testcase_26 AC 227 ms
79,596 KB
testcase_27 AC 229 ms
79,700 KB
testcase_28 AC 227 ms
79,484 KB
testcase_29 AC 229 ms
79,612 KB
testcase_30 AC 227 ms
78,664 KB
testcase_31 AC 227 ms
78,532 KB
testcase_32 AC 226 ms
79,648 KB
testcase_33 AC 215 ms
78,544 KB
testcase_34 AC 127 ms
76,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

sys.set_int_max_str_digits(10**7)

T=int(input())
for tests in range(T):
    N,M=map(int,input().split())

    print((N*(N+1)//2)%M)
0