結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー detteiuudetteiuu
提出日時 2024-08-17 14:17:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 77,052 KB
最終ジャッジ日時 2024-08-17 14:17:26
合計ジャッジ時間 10,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,752 KB
testcase_01 AC 613 ms
76,608 KB
testcase_02 AC 614 ms
76,420 KB
testcase_03 AC 629 ms
76,516 KB
testcase_04 AC 602 ms
76,320 KB
testcase_05 AC 748 ms
76,056 KB
testcase_06 AC 733 ms
76,484 KB
testcase_07 AC 103 ms
76,532 KB
testcase_08 AC 101 ms
76,120 KB
testcase_09 AC 70 ms
72,240 KB
testcase_10 AC 68 ms
71,196 KB
testcase_11 AC 47 ms
60,684 KB
testcase_12 AC 47 ms
60,372 KB
testcase_13 AC 78 ms
76,852 KB
testcase_14 AC 76 ms
77,008 KB
testcase_15 AC 78 ms
76,552 KB
testcase_16 AC 80 ms
76,428 KB
testcase_17 AC 78 ms
76,728 KB
testcase_18 AC 78 ms
76,392 KB
testcase_19 AC 77 ms
76,596 KB
testcase_20 AC 79 ms
76,704 KB
testcase_21 AC 77 ms
76,676 KB
testcase_22 AC 78 ms
76,924 KB
testcase_23 AC 72 ms
76,612 KB
testcase_24 AC 72 ms
77,052 KB
testcase_25 AC 73 ms
76,716 KB
testcase_26 AC 72 ms
76,996 KB
testcase_27 AC 72 ms
76,964 KB
testcase_28 AC 72 ms
76,796 KB
testcase_29 AC 72 ms
76,932 KB
testcase_30 AC 72 ms
76,812 KB
testcase_31 AC 71 ms
76,908 KB
testcase_32 AC 71 ms
76,744 KB
testcase_33 AC 71 ms
76,780 KB
testcase_34 AC 592 ms
76,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N, M = input().split()
    M = int(M)
    h = 0
    m = 0
    for i in range(len(N)):
        m = m*10+int(N[i])
        h = (h*10+m//2)%M
        m %= 2
    m += 1
    if m == 2:
        m = 0
        h += 1
    n = 0
    for i in range(len(N)):
        n = (n*10+int(N[i]))%M
    print((h*n+(n-h)*m)%M)
0