結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ニックネームニックネーム
提出日時 2024-02-23 21:31:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,343 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,068 KB
最終ジャッジ日時 2024-09-29 05:37:51
合計ジャッジ時間 18,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 1,343 ms
10,624 KB
testcase_02 AC 1,314 ms
10,624 KB
testcase_03 AC 1,304 ms
10,624 KB
testcase_04 AC 1,298 ms
10,624 KB
testcase_05 AC 1,341 ms
10,624 KB
testcase_06 AC 1,338 ms
10,624 KB
testcase_07 AC 94 ms
10,624 KB
testcase_08 AC 96 ms
10,624 KB
testcase_09 AC 42 ms
10,624 KB
testcase_10 AC 41 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 268 ms
12,908 KB
testcase_14 AC 223 ms
12,544 KB
testcase_15 AC 191 ms
12,672 KB
testcase_16 AC 213 ms
12,624 KB
testcase_17 AC 288 ms
13,372 KB
testcase_18 AC 199 ms
12,892 KB
testcase_19 AC 237 ms
13,076 KB
testcase_20 AC 374 ms
14,052 KB
testcase_21 AC 239 ms
13,228 KB
testcase_22 AC 248 ms
13,160 KB
testcase_23 AC 380 ms
13,936 KB
testcase_24 AC 380 ms
13,936 KB
testcase_25 AC 383 ms
14,068 KB
testcase_26 AC 374 ms
14,068 KB
testcase_27 AC 377 ms
13,936 KB
testcase_28 AC 374 ms
13,936 KB
testcase_29 AC 371 ms
13,940 KB
testcase_30 AC 382 ms
14,068 KB
testcase_31 AC 382 ms
14,068 KB
testcase_32 AC 377 ms
13,940 KB
testcase_33 AC 363 ms
13,936 KB
testcase_34 AC 1,321 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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