結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー nikoro256nikoro256
提出日時 2024-02-23 21:42:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,335 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,068 KB
最終ジャッジ日時 2024-09-29 05:59:54
合計ジャッジ時間 18,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 1,295 ms
10,624 KB
testcase_02 AC 1,321 ms
10,624 KB
testcase_03 AC 1,308 ms
10,624 KB
testcase_04 AC 1,317 ms
10,624 KB
testcase_05 AC 1,335 ms
10,624 KB
testcase_06 AC 1,333 ms
10,624 KB
testcase_07 AC 96 ms
10,624 KB
testcase_08 AC 97 ms
10,752 KB
testcase_09 AC 43 ms
10,624 KB
testcase_10 AC 43 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 322 ms
12,904 KB
testcase_14 AC 225 ms
12,544 KB
testcase_15 AC 194 ms
12,672 KB
testcase_16 AC 209 ms
12,624 KB
testcase_17 AC 288 ms
13,372 KB
testcase_18 AC 199 ms
12,888 KB
testcase_19 AC 241 ms
13,076 KB
testcase_20 AC 374 ms
14,040 KB
testcase_21 AC 241 ms
13,224 KB
testcase_22 AC 257 ms
13,156 KB
testcase_23 AC 378 ms
13,936 KB
testcase_24 AC 393 ms
13,940 KB
testcase_25 AC 378 ms
14,064 KB
testcase_26 AC 387 ms
14,064 KB
testcase_27 AC 380 ms
13,936 KB
testcase_28 AC 378 ms
13,936 KB
testcase_29 AC 393 ms
13,940 KB
testcase_30 AC 394 ms
14,068 KB
testcase_31 AC 386 ms
14,064 KB
testcase_32 AC 389 ms
13,812 KB
testcase_33 AC 358 ms
14,064 KB
testcase_34 AC 1,300 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)
T=int(input())
for _ in range(T):
    N,M=map(int,input().split())
    print((1+N)*N//2%M)
0