結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー anonymouslyanonymously
提出日時 2024-02-23 21:51:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 202 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,668 KB
最終ジャッジ日時 2024-10-02 21:01:36
合計ジャッジ時間 19,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 1,318 ms
21,536 KB
testcase_02 AC 1,335 ms
21,536 KB
testcase_03 AC 1,313 ms
21,540 KB
testcase_04 AC 1,326 ms
21,540 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 144 ms
11,008 KB
testcase_08 AC 144 ms
11,136 KB
testcase_09 AC 53 ms
10,624 KB
testcase_10 AC 53 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 201 ms
11,128 KB
testcase_14 AC 199 ms
10,888 KB
testcase_15 AC 194 ms
11,008 KB
testcase_16 AC 213 ms
11,136 KB
testcase_17 AC 189 ms
11,392 KB
testcase_18 AC 187 ms
11,136 KB
testcase_19 AC 212 ms
11,264 KB
testcase_20 AC 220 ms
11,768 KB
testcase_21 AC 183 ms
11,264 KB
testcase_22 AC 220 ms
11,272 KB
testcase_23 AC 170 ms
11,784 KB
testcase_24 AC 182 ms
11,776 KB
testcase_25 AC 220 ms
11,656 KB
testcase_26 AC 181 ms
11,780 KB
testcase_27 AC 219 ms
11,784 KB
testcase_28 AC 223 ms
11,780 KB
testcase_29 AC 218 ms
11,656 KB
testcase_30 AC 179 ms
11,656 KB
testcase_31 AC 223 ms
11,780 KB
testcase_32 AC 222 ms
11,784 KB
testcase_33 AC 227 ms
11,780 KB
testcase_34 AC 1,070 ms
21,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n,m):
    m=int(m)
    tmp=0
    for c in n:
        tmp=10*tmp+int(c)
        tmp%=(2*m)
    return (tmp*(tmp+1)//2)%m

print(*[solve(*input().split()) for i in range(int(input()))],sep='\n')
0