結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー moon17moon17
提出日時 2024-02-23 23:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,632 KB
最終ジャッジ日時 2024-09-29 09:15:17
合計ジャッジ時間 8,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,624 KB
testcase_01 AC 518 ms
76,576 KB
testcase_02 AC 492 ms
76,632 KB
testcase_03 AC 507 ms
76,376 KB
testcase_04 AC 504 ms
76,528 KB
testcase_05 AC 627 ms
76,468 KB
testcase_06 AC 629 ms
76,412 KB
testcase_07 AC 119 ms
76,548 KB
testcase_08 AC 117 ms
76,436 KB
testcase_09 AC 87 ms
76,196 KB
testcase_10 AC 89 ms
76,244 KB
testcase_11 AC 39 ms
54,660 KB
testcase_12 AC 39 ms
53,760 KB
testcase_13 AC 95 ms
72,024 KB
testcase_14 AC 89 ms
72,084 KB
testcase_15 AC 82 ms
72,080 KB
testcase_16 AC 85 ms
72,044 KB
testcase_17 AC 98 ms
72,104 KB
testcase_18 AC 81 ms
71,544 KB
testcase_19 AC 98 ms
72,168 KB
testcase_20 AC 133 ms
74,104 KB
testcase_21 AC 92 ms
72,596 KB
testcase_22 AC 94 ms
72,720 KB
testcase_23 AC 133 ms
74,540 KB
testcase_24 AC 131 ms
74,244 KB
testcase_25 AC 130 ms
74,196 KB
testcase_26 AC 128 ms
74,424 KB
testcase_27 AC 131 ms
74,220 KB
testcase_28 AC 127 ms
74,268 KB
testcase_29 AC 128 ms
74,212 KB
testcase_30 AC 133 ms
74,180 KB
testcase_31 AC 131 ms
74,260 KB
testcase_32 AC 128 ms
74,204 KB
testcase_33 AC 132 ms
74,072 KB
testcase_34 AC 508 ms
76,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;sys.set_int_max_str_digits(0)
for _ in range(int(input())):
  n,m=map(int,input().split())
  if n%2:
    n1=n%m
    n2=(n+1)//2%m
  else:
    n1=n//2%m
    n2=(n+1)%m
  print(n1*n2%m)
0