結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー hitonanodehitonanode
提出日時 2024-02-25 00:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 95,660 KB
最終ジャッジ日時 2024-09-29 10:30:04
合計ジャッジ時間 5,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 245 ms
94,228 KB
testcase_02 AC 247 ms
94,360 KB
testcase_03 AC 249 ms
93,956 KB
testcase_04 AC 247 ms
93,980 KB
testcase_05 AC 309 ms
95,660 KB
testcase_06 AC 312 ms
95,528 KB
testcase_07 AC 73 ms
76,220 KB
testcase_08 AC 74 ms
76,264 KB
testcase_09 AC 59 ms
69,504 KB
testcase_10 AC 60 ms
69,376 KB
testcase_11 AC 41 ms
58,752 KB
testcase_12 AC 42 ms
59,008 KB
testcase_13 AC 60 ms
75,904 KB
testcase_14 AC 60 ms
76,048 KB
testcase_15 AC 63 ms
75,784 KB
testcase_16 AC 61 ms
75,648 KB
testcase_17 AC 58 ms
76,288 KB
testcase_18 AC 63 ms
75,520 KB
testcase_19 AC 61 ms
75,816 KB
testcase_20 AC 58 ms
76,544 KB
testcase_21 AC 61 ms
75,776 KB
testcase_22 AC 62 ms
76,160 KB
testcase_23 AC 56 ms
76,160 KB
testcase_24 AC 55 ms
76,800 KB
testcase_25 AC 56 ms
76,160 KB
testcase_26 AC 55 ms
76,160 KB
testcase_27 AC 56 ms
76,416 KB
testcase_28 AC 56 ms
76,488 KB
testcase_29 AC 55 ms
76,544 KB
testcase_30 AC 58 ms
76,032 KB
testcase_31 AC 57 ms
76,416 KB
testcase_32 AC 57 ms
76,520 KB
testcase_33 AC 50 ms
61,312 KB
testcase_34 AC 228 ms
92,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

answers = []

for _ in range(int(input())):
    nstr, mstr = input().split()
    m = int(mstr)
    md = 0
    for c in nstr:
        md = (md * 10 + int(c)) % (m * 2)
    answers.append(md * (md + 1) // 2 % m)

print(*answers, sep='\n')
0