結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー 👑 p-adicp-adic
提出日時 2023-07-25 09:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-09-29 04:35:04
合計ジャッジ時間 7,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 540 ms
76,020 KB
testcase_02 AC 575 ms
75,804 KB
testcase_03 AC 529 ms
75,704 KB
testcase_04 AC 535 ms
75,988 KB
testcase_05 AC 590 ms
75,564 KB
testcase_06 AC 622 ms
76,112 KB
testcase_07 AC 87 ms
76,044 KB
testcase_08 AC 89 ms
75,792 KB
testcase_09 AC 60 ms
68,952 KB
testcase_10 AC 60 ms
68,288 KB
testcase_11 AC 43 ms
59,308 KB
testcase_12 AC 43 ms
59,308 KB
testcase_13 AC 65 ms
76,016 KB
testcase_14 AC 65 ms
76,324 KB
testcase_15 AC 65 ms
75,756 KB
testcase_16 AC 66 ms
75,476 KB
testcase_17 AC 64 ms
76,216 KB
testcase_18 AC 65 ms
75,716 KB
testcase_19 AC 65 ms
75,568 KB
testcase_20 AC 65 ms
76,800 KB
testcase_21 AC 64 ms
75,408 KB
testcase_22 AC 65 ms
76,644 KB
testcase_23 AC 62 ms
76,412 KB
testcase_24 AC 63 ms
76,736 KB
testcase_25 AC 61 ms
76,076 KB
testcase_26 AC 63 ms
76,076 KB
testcase_27 AC 64 ms
76,548 KB
testcase_28 AC 63 ms
75,904 KB
testcase_29 AC 62 ms
76,964 KB
testcase_30 AC 62 ms
76,496 KB
testcase_31 AC 62 ms
76,024 KB
testcase_32 AC 62 ms
76,132 KB
testcase_33 AC 54 ms
61,252 KB
testcase_34 AC 517 ms
76,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
for t in range(int(I())):
	S,M=I().split()
	N,M=0,int(M)
	for s in S:N=(N*10+int(s))%(M*2)
	print(N*(N+1)//2%M)
0