結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー 👑 KazunKazun
提出日時 2023-07-03 23:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 83,384 KB
最終ジャッジ日時 2024-09-29 04:34:40
合計ジャッジ時間 4,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,124 KB
testcase_01 AC 160 ms
83,384 KB
testcase_02 AC 155 ms
83,060 KB
testcase_03 AC 155 ms
83,304 KB
testcase_04 AC 153 ms
82,860 KB
testcase_05 AC 205 ms
83,344 KB
testcase_06 AC 209 ms
82,980 KB
testcase_07 AC 56 ms
75,860 KB
testcase_08 AC 57 ms
76,128 KB
testcase_09 AC 45 ms
66,544 KB
testcase_10 AC 44 ms
67,320 KB
testcase_11 AC 35 ms
60,088 KB
testcase_12 AC 36 ms
58,756 KB
testcase_13 AC 48 ms
74,188 KB
testcase_14 AC 48 ms
73,472 KB
testcase_15 AC 47 ms
72,952 KB
testcase_16 AC 49 ms
73,740 KB
testcase_17 AC 49 ms
73,800 KB
testcase_18 AC 48 ms
73,928 KB
testcase_19 AC 47 ms
74,708 KB
testcase_20 AC 49 ms
74,168 KB
testcase_21 AC 49 ms
73,244 KB
testcase_22 AC 48 ms
74,532 KB
testcase_23 AC 48 ms
73,888 KB
testcase_24 AC 48 ms
73,200 KB
testcase_25 AC 49 ms
73,752 KB
testcase_26 AC 49 ms
73,080 KB
testcase_27 AC 47 ms
74,388 KB
testcase_28 AC 48 ms
73,284 KB
testcase_29 AC 49 ms
74,940 KB
testcase_30 AC 48 ms
73,688 KB
testcase_31 AC 48 ms
73,208 KB
testcase_32 AC 48 ms
74,140 KB
testcase_33 AC 48 ms
74,892 KB
testcase_34 AC 130 ms
83,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, M = input().split()
    M = int(M)

    N_mod = 0
    for i in range(len(N)):
        N_mod = (10 * N_mod + int(N[i])) % (2 * M)

    return (N_mod * (N_mod + 1) % (2 * M)) // 2

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

T=int(input())
write("\n".join(map(str, [solve() for _ in range(T)])))
0