結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ikomaikoma
提出日時 2024-02-23 23:26:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 79,912 KB
最終ジャッジ日時 2024-09-29 08:58:44
合計ジャッジ時間 7,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,268 KB
testcase_01 AC 125 ms
76,272 KB
testcase_02 AC 127 ms
76,136 KB
testcase_03 AC 126 ms
76,368 KB
testcase_04 AC 126 ms
76,432 KB
testcase_05 AC 251 ms
76,452 KB
testcase_06 AC 246 ms
76,728 KB
testcase_07 AC 75 ms
76,128 KB
testcase_08 AC 70 ms
76,024 KB
testcase_09 AC 54 ms
66,676 KB
testcase_10 AC 54 ms
67,764 KB
testcase_11 AC 38 ms
52,752 KB
testcase_12 AC 38 ms
52,732 KB
testcase_13 AC 145 ms
74,652 KB
testcase_14 AC 126 ms
73,608 KB
testcase_15 AC 115 ms
73,036 KB
testcase_16 AC 123 ms
73,104 KB
testcase_17 AC 154 ms
75,196 KB
testcase_18 AC 119 ms
73,560 KB
testcase_19 AC 146 ms
74,500 KB
testcase_20 AC 220 ms
79,712 KB
testcase_21 AC 138 ms
73,956 KB
testcase_22 AC 145 ms
75,028 KB
testcase_23 AC 218 ms
79,712 KB
testcase_24 AC 220 ms
79,492 KB
testcase_25 AC 220 ms
79,912 KB
testcase_26 AC 219 ms
79,248 KB
testcase_27 AC 219 ms
79,532 KB
testcase_28 AC 217 ms
79,452 KB
testcase_29 AC 221 ms
79,820 KB
testcase_30 AC 226 ms
78,908 KB
testcase_31 AC 219 ms
78,836 KB
testcase_32 AC 219 ms
79,376 KB
testcase_33 AC 208 ms
78,948 KB
testcase_34 AC 120 ms
76,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.set_int_max_str_digits(0)

T=int(input())

for _ in range(T):
    N,M=map(int,input().split())
    print(N*(N+1)//2 % M)
0