結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー BelkaBelka
提出日時 2024-02-24 23:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 613 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2024-09-29 10:18:27
合計ジャッジ時間 7,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 530 ms
75,888 KB
testcase_02 AC 520 ms
75,960 KB
testcase_03 AC 545 ms
75,872 KB
testcase_04 AC 525 ms
75,880 KB
testcase_05 AC 613 ms
75,960 KB
testcase_06 AC 594 ms
76,380 KB
testcase_07 AC 83 ms
76,276 KB
testcase_08 AC 84 ms
76,092 KB
testcase_09 AC 59 ms
70,032 KB
testcase_10 AC 59 ms
68,588 KB
testcase_11 AC 43 ms
58,872 KB
testcase_12 AC 41 ms
59,816 KB
testcase_13 AC 63 ms
76,820 KB
testcase_14 AC 62 ms
76,316 KB
testcase_15 AC 61 ms
76,000 KB
testcase_16 AC 61 ms
75,544 KB
testcase_17 AC 63 ms
76,264 KB
testcase_18 AC 63 ms
75,564 KB
testcase_19 AC 62 ms
75,916 KB
testcase_20 AC 61 ms
76,416 KB
testcase_21 AC 62 ms
76,268 KB
testcase_22 AC 65 ms
76,292 KB
testcase_23 AC 60 ms
76,408 KB
testcase_24 AC 59 ms
76,340 KB
testcase_25 AC 58 ms
76,680 KB
testcase_26 AC 59 ms
76,684 KB
testcase_27 AC 58 ms
76,160 KB
testcase_28 AC 59 ms
77,016 KB
testcase_29 AC 58 ms
76,656 KB
testcase_30 AC 59 ms
76,700 KB
testcase_31 AC 59 ms
76,488 KB
testcase_32 AC 58 ms
76,688 KB
testcase_33 AC 53 ms
62,208 KB
testcase_34 AC 501 ms
75,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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