結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2024-02-23 22:20:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,421 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,456 KB
最終ジャッジ日時 2024-09-29 07:11:08
合計ジャッジ時間 15,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 1,382 ms
10,880 KB
testcase_02 AC 1,343 ms
10,752 KB
testcase_03 AC 1,363 ms
10,752 KB
testcase_04 AC 1,375 ms
10,880 KB
testcase_05 AC 1,412 ms
10,752 KB
testcase_06 AC 1,421 ms
10,624 KB
testcase_07 AC 95 ms
10,624 KB
testcase_08 AC 92 ms
10,752 KB
testcase_09 AC 41 ms
10,880 KB
testcase_10 AC 39 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 251 ms
12,672 KB
testcase_14 AC 116 ms
12,416 KB
testcase_15 AC 107 ms
12,416 KB
testcase_16 AC 111 ms
12,528 KB
testcase_17 AC 144 ms
12,896 KB
testcase_18 AC 106 ms
12,524 KB
testcase_19 AC 126 ms
12,844 KB
testcase_20 AC 184 ms
13,440 KB
testcase_21 AC 126 ms
12,988 KB
testcase_22 AC 134 ms
12,800 KB
testcase_23 AC 198 ms
13,328 KB
testcase_24 AC 193 ms
13,452 KB
testcase_25 AC 189 ms
13,452 KB
testcase_26 AC 184 ms
13,352 KB
testcase_27 AC 186 ms
13,324 KB
testcase_28 AC 188 ms
13,328 KB
testcase_29 AC 183 ms
13,328 KB
testcase_30 AC 189 ms
13,328 KB
testcase_31 AC 193 ms
13,456 KB
testcase_32 AC 194 ms
13,452 KB
testcase_33 AC 193 ms
13,196 KB
testcase_34 AC 1,349 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)

t = int(input())

def nC2(n):
	return n*(n+1)//2
for _ in range(t):
	n,m = map(int,input().split())
	p = n//m
	d = n%m
	
	p %= m

	ans = (nC2(m-1) * p + nC2(d))%m
	
	print(ans)
0