結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ebi_flyebi_fly
提出日時 2024-02-23 22:25:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,498 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,448 KB
最終ジャッジ日時 2024-10-07 11:47:47
合計ジャッジ時間 18,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(10**7)

t = int(input())
for i in range(t):
    n,m = map(int, input().split())
    ans = n
    if ans % 2 == 0:
        ans //= 2
        ans %= m
        ans *= n + 1
    else:
        ans %= m
        ans *= ((n + 1) // 2) % m
    ans %= m
    print(ans)
0