結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー VvyLwVvyLw
提出日時 2024-02-24 00:10:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,169 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,956 KB
最終ジャッジ日時 2024-09-29 09:31:14
合計ジャッジ時間 17,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 1,162 ms
10,496 KB
testcase_02 AC 1,161 ms
10,496 KB
testcase_03 AC 1,125 ms
10,624 KB
testcase_04 AC 1,162 ms
10,624 KB
testcase_05 AC 1,169 ms
10,624 KB
testcase_06 AC 1,145 ms
10,496 KB
testcase_07 AC 86 ms
10,752 KB
testcase_08 AC 87 ms
10,624 KB
testcase_09 AC 38 ms
10,752 KB
testcase_10 AC 37 ms
10,624 KB
testcase_11 AC 25 ms
10,496 KB
testcase_12 AC 26 ms
10,496 KB
testcase_13 AC 301 ms
12,980 KB
testcase_14 AC 202 ms
12,604 KB
testcase_15 AC 172 ms
12,544 KB
testcase_16 AC 189 ms
12,508 KB
testcase_17 AC 257 ms
13,256 KB
testcase_18 AC 186 ms
12,876 KB
testcase_19 AC 216 ms
13,084 KB
testcase_20 AC 350 ms
13,936 KB
testcase_21 AC 241 ms
13,084 KB
testcase_22 AC 228 ms
12,988 KB
testcase_23 AC 353 ms
13,916 KB
testcase_24 AC 361 ms
13,952 KB
testcase_25 AC 344 ms
13,952 KB
testcase_26 AC 354 ms
13,956 KB
testcase_27 AC 348 ms
13,824 KB
testcase_28 AC 345 ms
13,952 KB
testcase_29 AC 345 ms
13,824 KB
testcase_30 AC 360 ms
13,948 KB
testcase_31 AC 352 ms
13,952 KB
testcase_32 AC 346 ms
13,824 KB
testcase_33 AC 329 ms
13,820 KB
testcase_34 AC 1,142 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(4*10**6)
def main():
    n,m=map(int, input().split())
    print((n*(n+1)//2)%m)
for _ in range(int(input())): main()
0