結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー rlangevinrlangevin
提出日時 2024-03-03 23:33:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,400 KB
実行使用メモリ 76,768 KB
最終ジャッジ日時 2024-09-29 17:15:56
合計ジャッジ時間 5,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,620 KB
testcase_01 AC 189 ms
76,328 KB
testcase_02 AC 180 ms
76,640 KB
testcase_03 AC 184 ms
75,888 KB
testcase_04 AC 182 ms
76,280 KB
testcase_05 AC 254 ms
76,364 KB
testcase_06 AC 259 ms
76,768 KB
testcase_07 AC 62 ms
75,880 KB
testcase_08 AC 61 ms
76,096 KB
testcase_09 AC 49 ms
65,968 KB
testcase_10 AC 48 ms
65,340 KB
testcase_11 AC 42 ms
59,632 KB
testcase_12 AC 41 ms
58,796 KB
testcase_13 AC 64 ms
76,356 KB
testcase_14 AC 63 ms
75,636 KB
testcase_15 AC 62 ms
75,320 KB
testcase_16 AC 64 ms
76,368 KB
testcase_17 AC 63 ms
75,976 KB
testcase_18 AC 64 ms
75,756 KB
testcase_19 AC 63 ms
75,828 KB
testcase_20 AC 59 ms
76,128 KB
testcase_21 AC 61 ms
75,676 KB
testcase_22 AC 62 ms
76,184 KB
testcase_23 AC 58 ms
75,880 KB
testcase_24 AC 58 ms
76,204 KB
testcase_25 AC 60 ms
75,572 KB
testcase_26 AC 61 ms
76,308 KB
testcase_27 AC 62 ms
76,084 KB
testcase_28 AC 61 ms
76,180 KB
testcase_29 AC 61 ms
76,340 KB
testcase_30 AC 62 ms
76,304 KB
testcase_31 AC 62 ms
76,208 KB
testcase_32 AC 61 ms
75,844 KB
testcase_33 AC 55 ms
61,012 KB
testcase_34 AC 169 ms
76,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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