結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー hiro1729hiro1729
提出日時 2024-02-23 21:34:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 77,208 KB
最終ジャッジ日時 2024-09-29 05:42:11
合計ジャッジ時間 7,904 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,152 KB
testcase_01 AC 544 ms
76,072 KB
testcase_02 AC 547 ms
76,100 KB
testcase_03 AC 546 ms
76,100 KB
testcase_04 AC 552 ms
76,400 KB
testcase_05 AC 616 ms
76,476 KB
testcase_06 AC 608 ms
76,164 KB
testcase_07 AC 91 ms
75,804 KB
testcase_08 AC 90 ms
76,316 KB
testcase_09 AC 62 ms
68,348 KB
testcase_10 AC 61 ms
68,576 KB
testcase_11 AC 44 ms
60,040 KB
testcase_12 AC 44 ms
59,632 KB
testcase_13 AC 65 ms
76,212 KB
testcase_14 AC 64 ms
76,060 KB
testcase_15 AC 64 ms
75,624 KB
testcase_16 AC 65 ms
76,124 KB
testcase_17 AC 64 ms
76,372 KB
testcase_18 AC 65 ms
76,112 KB
testcase_19 AC 64 ms
75,952 KB
testcase_20 AC 64 ms
76,732 KB
testcase_21 AC 64 ms
76,000 KB
testcase_22 AC 64 ms
76,536 KB
testcase_23 AC 62 ms
76,284 KB
testcase_24 AC 63 ms
76,368 KB
testcase_25 AC 62 ms
76,664 KB
testcase_26 AC 62 ms
76,496 KB
testcase_27 AC 63 ms
77,208 KB
testcase_28 AC 62 ms
77,084 KB
testcase_29 AC 62 ms
76,552 KB
testcase_30 AC 62 ms
76,728 KB
testcase_31 AC 61 ms
76,892 KB
testcase_32 AC 61 ms
76,724 KB
testcase_33 AC 53 ms
61,744 KB
testcase_34 AC 521 ms
76,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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