結果
問題 | No.2649 [Cherry 6th Tune C] Anthem Flower |
ユーザー |
|
提出日時 | 2024-02-23 22:03:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 358 ms / 2,000 ms |
コード長 | 376 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 92,288 KB |
最終ジャッジ日時 | 2024-09-29 06:42:30 |
合計ジャッジ時間 | 9,468 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random#sys.setrecursionlimit(10**9)sys.set_int_max_str_digits(0)input = sys.stdin.readlinefor i in range(int(input())):n,m =map(int,input().split())if n % 2 == 0:x = n//2print(((x%m)*(n+1)%m)%m)else:x = (n+1)//2print((x%m)*(n%m)%m)