結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-03-10 19:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-09-29 21:46:21
合計ジャッジ時間 10,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
61,952 KB
testcase_01 AC 459 ms
78,336 KB
testcase_02 AC 454 ms
78,404 KB
testcase_03 AC 450 ms
78,280 KB
testcase_04 AC 444 ms
78,336 KB
testcase_05 AC 610 ms
78,436 KB
testcase_06 AC 644 ms
78,592 KB
testcase_07 AC 115 ms
78,464 KB
testcase_08 AC 113 ms
78,080 KB
testcase_09 AC 91 ms
77,952 KB
testcase_10 AC 90 ms
78,464 KB
testcase_11 AC 50 ms
62,208 KB
testcase_12 AC 49 ms
62,720 KB
testcase_13 AC 143 ms
79,488 KB
testcase_14 AC 131 ms
78,336 KB
testcase_15 AC 122 ms
78,464 KB
testcase_16 AC 128 ms
78,948 KB
testcase_17 AC 151 ms
80,132 KB
testcase_18 AC 121 ms
77,952 KB
testcase_19 AC 144 ms
79,488 KB
testcase_20 AC 211 ms
84,480 KB
testcase_21 AC 145 ms
80,384 KB
testcase_22 AC 151 ms
80,028 KB
testcase_23 AC 215 ms
85,120 KB
testcase_24 AC 213 ms
84,736 KB
testcase_25 AC 217 ms
84,736 KB
testcase_26 AC 210 ms
84,992 KB
testcase_27 AC 217 ms
84,912 KB
testcase_28 AC 217 ms
84,736 KB
testcase_29 AC 218 ms
84,864 KB
testcase_30 AC 213 ms
82,304 KB
testcase_31 AC 208 ms
82,432 KB
testcase_32 AC 210 ms
84,864 KB
testcase_33 AC 199 ms
84,388 KB
testcase_34 AC 468 ms
78,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param("max_unroll_recursion=-1")
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys, math,random,time
# input = sys.stdin.readline
sys.set_int_max_str_digits(10**7) 

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