結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ntudantuda
提出日時 2024-02-24 09:42:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 77,024 KB
最終ジャッジ日時 2024-09-29 09:56:09
合計ジャッジ時間 8,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 549 ms
76,000 KB
testcase_02 AC 525 ms
76,080 KB
testcase_03 AC 531 ms
76,492 KB
testcase_04 AC 537 ms
75,996 KB
testcase_05 AC 602 ms
76,032 KB
testcase_06 AC 615 ms
76,324 KB
testcase_07 AC 84 ms
75,964 KB
testcase_08 AC 89 ms
76,312 KB
testcase_09 AC 61 ms
68,352 KB
testcase_10 AC 60 ms
68,224 KB
testcase_11 AC 42 ms
59,264 KB
testcase_12 AC 45 ms
59,264 KB
testcase_13 AC 62 ms
76,732 KB
testcase_14 AC 61 ms
76,420 KB
testcase_15 AC 66 ms
75,776 KB
testcase_16 AC 60 ms
76,212 KB
testcase_17 AC 60 ms
76,496 KB
testcase_18 AC 63 ms
76,032 KB
testcase_19 AC 62 ms
76,416 KB
testcase_20 AC 59 ms
76,800 KB
testcase_21 AC 63 ms
76,288 KB
testcase_22 AC 62 ms
76,820 KB
testcase_23 AC 55 ms
76,532 KB
testcase_24 AC 55 ms
76,980 KB
testcase_25 AC 56 ms
76,672 KB
testcase_26 AC 58 ms
77,024 KB
testcase_27 AC 64 ms
76,880 KB
testcase_28 AC 56 ms
76,800 KB
testcase_29 AC 57 ms
76,860 KB
testcase_30 AC 56 ms
76,956 KB
testcase_31 AC 55 ms
76,800 KB
testcase_32 AC 57 ms
76,544 KB
testcase_33 AC 49 ms
60,928 KB
testcase_34 AC 519 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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